IRetryableReadOperationTResultExecuteAttempt Method  | 
 
            Executes the first attempt.
            
 
    Namespace: 
   MongoDB.Driver.Core.Operations
    Assembly:
   MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
SyntaxTResult ExecuteAttempt(
	RetryableReadContext context,
	int attempt,
	long? transactionNumber,
	CancellationToken cancellationToken
)
Function ExecuteAttempt ( 
	context As RetryableReadContext,
	attempt As Integer,
	transactionNumber As Long?,
	cancellationToken As CancellationToken
) As TResult
abstract ExecuteAttempt : 
        context : RetryableReadContext * 
        attempt : int * 
        transactionNumber : Nullable<int64> * 
        cancellationToken : CancellationToken -> 'TResult 
Parameters
- context
 - Type: MongoDB.Driver.Core.OperationsRetryableReadContext
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