OperationExtensionMethodsExecuteTResult 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.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax public static TResult Execute<TResult>(
this IReadOperation<TResult> operation,
IChannelSourceHandle channelSource,
ReadPreference readPreference,
ICoreSessionHandle session,
CancellationToken cancellationToken
)
<ExtensionAttribute>
Public Shared Function Execute(Of TResult) (
operation As IReadOperation(Of TResult),
channelSource As IChannelSourceHandle,
readPreference As ReadPreference,
session As ICoreSessionHandle,
cancellationToken As CancellationToken
) As TResult
[<ExtensionAttribute>]
static member Execute :
operation : IReadOperation<'TResult> *
channelSource : IChannelSourceHandle *
readPreference : ReadPreference *
session : ICoreSessionHandle *
cancellationToken : CancellationToken -> 'TResult
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:
TResult
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