Show / Hide Table of Contents

Class WaitOperationRequest

The request message for [Operations.WaitOperation][google.longrunning.Operations.WaitOperation].

Inheritance
System.Object
WaitOperationRequest
Implements
IMessage<WaitOperationRequest>
IMessage
System.IEquatable<WaitOperationRequest>
IDeepCloneable<WaitOperationRequest>
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.LongRunning
Assembly: Google.LongRunning.dll
Syntax
public sealed class WaitOperationRequest : IMessage<WaitOperationRequest>, IMessage, IEquatable<WaitOperationRequest>, IDeepCloneable<WaitOperationRequest>

Constructors

WaitOperationRequest()

Declaration
public WaitOperationRequest()

WaitOperationRequest(WaitOperationRequest)

Declaration
public WaitOperationRequest(WaitOperationRequest other)
Parameters
Type Name Description
WaitOperationRequest other

Properties

Name

The name of the operation resource to wait on.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

Timeout

The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one will be used.

Declaration
public Duration Timeout { get; set; }
Property Value
Type Description
Duration
Back to top