Click or drag to resize

CallOptions Properties

The CallOptions type exposes the following members.

Properties
  NameDescription
Public propertyCancellationToken
Token that can be used for cancelling the call on the client side. Cancelling the token will request cancellation of the remote call. Best effort will be made to deliver the cancellation notification to the server and interaction of the call with the server side will be terminated. Unless the call finishes before the cancellation could happen (there is an inherent race), the call will finish with StatusCode.Cancelled status.
Public propertyCredentials
Credentials to use for this call.
Public propertyDeadline
Call deadline.
Public propertyHeaders
Headers to send at the beginning of the call.
Public propertyIsWaitForReady
If true and and channel is in ChannelState.TransientFailure, the call will attempt waiting for the channel to recover instead of failing immediately (which is the default "FailFast" semantics). Note: experimental API that can change or be removed without any prior notice.
Public propertyPropagationToken
Token for propagating parent call context.
Public propertyWriteOptions
Write options that will be used for this call.
Top
See Also