Grpc.Core.Internal.CallFlags
enum CallFlags
Flags to enable special call behaviors (client-side only).
CacheableRequest = 64
The call is cacheable. gRPC is free to use GET verb */
IdempotentRequest = 16
The call is idempotent (retrying the call doesn't change the outcome of the operation).
WaitForReady = 32
If channel is in ChannelState.TransientFailure, attempt waiting for the channel to recover
instead of failing the call immediately.