Click or drag to resize
CallOptions Structure
Options for calls made by client.

Namespace: Grpc.Core
Assembly: Grpc.Core (in Grpc.Core.dll) Version: 0.7.0.0
Syntax
public struct CallOptions

The CallOptions type exposes the following members.

Constructors
  NameDescription
Public methodCallOptions
Creates a new instance of CallOptions struct.
Top
Properties
  NameDescription
Public propertyCancellationToken
Token that can be used for cancelling the call.
Public propertyDeadline
Call deadline.
Public propertyHeaders
Headers to send at the beginning of the call.
Public propertyPropagationToken
Token for propagating parent call context.
Public propertyWriteOptions
Write options that will be used for this call.
Top
Methods
  NameDescription
Public methodEquals
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from ValueType.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Public methodWithCancellationToken
Returns new instance of CallOptions with CancellationToken set to the value provided. Values of all other fields are preserved.
Public methodWithDeadline
Returns new instance of CallOptions with Deadline set to the value provided. Values of all other fields are preserved.
Public methodWithHeaders
Returns new instance of CallOptions with Headers set to the value provided. Values of all other fields are preserved.
Top
See Also