RetryableReadContextCreate Method |
Creates and initializes a retryable read operation context.
Namespace:
MongoDB.Driver.Core.Operations
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.18.0+554c799eb1ec8dd732f16c739387f6664df1ba7a
Syntax public static RetryableReadContext Create(
IReadBinding binding,
bool retryRequested,
CancellationToken cancellationToken
)
Public Shared Function Create (
binding As IReadBinding,
retryRequested As Boolean,
cancellationToken As CancellationToken
) As RetryableReadContext
static member Create :
binding : IReadBinding *
retryRequested : bool *
cancellationToken : CancellationToken -> RetryableReadContext
Parameters
- binding
- Type: MongoDB.Driver.Core.BindingsIReadBinding
The binding. - retryRequested
- Type: SystemBoolean
if set to true [retry requested]. - cancellationToken
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
RetryableReadContextA retryable read context.
See Also