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.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
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