Executes the first attempt.
Namespace:
MongoDB.Driver.Core.Operations
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
SyntaxTResult ExecuteAttempt(
RetryableWriteContext context,
int attempt,
Nullable<long> transactionNumber,
CancellationToken cancellationToken
)
Function ExecuteAttempt (
context As RetryableWriteContext,
attempt As Integer,
transactionNumber As Nullable(Of Long),
cancellationToken As CancellationToken
) As TResult
abstract ExecuteAttempt :
context : RetryableWriteContext *
attempt : int *
transactionNumber : Nullable<int64> *
cancellationToken : CancellationToken -> 'TResult
Parameters
- context
- Type: MongoDB.Driver.Core.OperationsRetryableWriteContext
The context. - attempt
- Type: SystemInt32
The attempt. - transactionNumber
- Type: SystemNullableInt64
The transaction number. - cancellationToken
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TResultThe result.
See Also