Click or drag to resize

OperationExtensionMethodsExecuteAsyncTResult Method (IReadOperationTResult, IChannelSourceHandle, ReadPreference, ICoreSessionHandle, CancellationToken)

Executes a read operation using a channel source.

Namespace:  MongoDB.Driver.Core.Operations
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
public static Task<TResult> ExecuteAsync<TResult>(
	this IReadOperation<TResult> operation,
	IChannelSourceHandle channelSource,
	ReadPreference readPreference,
	ICoreSessionHandle session,
	CancellationToken cancellationToken
)

Parameters

operation
Type: MongoDB.Driver.Core.OperationsIReadOperationTResult
The read operation.
channelSource
Type: MongoDB.Driver.Core.BindingsIChannelSourceHandle
The channel source.
readPreference
Type: MongoDB.DriverReadPreference
The read preference.
session
Type: MongoDB.Driver.Core.BindingsICoreSessionHandle
The session.
cancellationToken
Type: System.ThreadingCancellationToken
The cancellation token.

Type Parameters

TResult
The type of the result.

Return Value

Type: TaskTResult
A Task whose result is the result of the operation.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IReadOperationTResult. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also