public class ContextPropagationOptions
Options for ContextPropagationToken.
Namespace
Grpc.CoreAssembly
Grpc.Core.Api.dll
Constructors
ContextPropagationOptions(bool, bool)
public ContextPropagationOptions(bool propagateDeadline = true, bool propagateCancellation = true)
Creates new context propagation options.
Parameters | |
---|---|
Name | Description |
propagateDeadline |
bool If set to |
propagateCancellation |
bool If set to |
Fields
Default
public static readonly ContextPropagationOptions Default
The context propagation options that will be used by default.
Field Value | |
---|---|
Type | Description |
ContextPropagationOptions |
Properties
IsPropagateCancellation
public bool IsPropagateCancellation { get; }
true
if parent call's cancellation token should be propagated to the child call.
Property Value | |
---|---|
Type | Description |
bool |
IsPropagateDeadline
public bool IsPropagateDeadline { get; }
true
if parent call's deadline should be propagated to the child call.
Property Value | |
---|---|
Type | Description |
bool |