| 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.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
 Syntax
Syntaxpublic 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
See Also