Click or drag to resize

IClientSessionWithTransactionTResult Method

Executes a callback within a transaction, with retries if needed.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
TResult WithTransaction<TResult>(
	Func<IClientSessionHandle, CancellationToken, TResult> callback,
	TransactionOptions transactionOptions = null,
	CancellationToken cancellationToken = null
)

Parameters

callback
Type: SystemFuncIClientSessionHandle, CancellationToken, TResult
The user defined callback.
transactionOptions (Optional)
Type: MongoDB.DriverTransactionOptions
The transaction options.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Type Parameters

TResult
The type of callback result.

Return Value

Type: TResult
The callback result.
See Also