Click or drag to resize
OperationExtensionMethodsExecuteAsyncTResult Method (IReadOperationTResult, IChannelSourceHandle, ReadPreference, 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.0.1
Syntax
public static Task<TResult> ExecuteAsync<TResult>(
	this IReadOperation<TResult> operation,
	IChannelSourceHandle channelSource,
	ReadPreference readPreference,
	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.
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