RetryableWriteContextCreate Method |
Creates and initializes a retryable write operation context.
Namespace:
MongoDB.Driver.Core.Operations
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax public static RetryableWriteContext Create(
IWriteBinding binding,
bool retryRequested,
CancellationToken cancellationToken
)
Public Shared Function Create (
binding As IWriteBinding,
retryRequested As Boolean,
cancellationToken As CancellationToken
) As RetryableWriteContext
static member Create :
binding : IWriteBinding *
retryRequested : bool *
cancellationToken : CancellationToken -> RetryableWriteContext
Parameters
- binding
- Type: MongoDB.Driver.Core.BindingsIWriteBinding
The binding. - retryRequested
- Type: SystemBoolean
if set to true [retry requested]. - cancellationToken
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
RetryableWriteContextA retryable write context.
See Also