RetryableReadContext.Create 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
Syntaxpublic 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.Bindings.IReadBinding
The binding. - retryRequested
- Type: System.Boolean
if set to true [retry requested]. - cancellationToken
- Type: System.Threading.CancellationToken
The cancellation token.
Return Value
Type:
RetryableReadContextA retryable read context.
See Also