OperationExtensionMethodsExecuteTResult Method (IWriteOperationTResult, IChannelSourceHandle, ICoreSessionHandle, CancellationToken) |
Executes a write operation using a channel source.
Namespace:
MongoDB.Driver.Core.Operations
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntaxpublic static TResult Execute<TResult>(
this IWriteOperation<TResult> operation,
IChannelSourceHandle channelSource,
ICoreSessionHandle session,
CancellationToken cancellationToken
)
<ExtensionAttribute>
Public Shared Function Execute(Of TResult) (
operation As IWriteOperation(Of TResult),
channelSource As IChannelSourceHandle,
session As ICoreSessionHandle,
cancellationToken As CancellationToken
) As TResult
[<ExtensionAttribute>]
static member Execute :
operation : IWriteOperation<'TResult> *
channelSource : IChannelSourceHandle *
session : ICoreSessionHandle *
cancellationToken : CancellationToken -> 'TResult
Parameters
- operation
- Type: MongoDB.Driver.Core.OperationsIWriteOperationTResult
The write operation. - channelSource
- Type: MongoDB.Driver.Core.BindingsIChannelSourceHandle
The channel source. - 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
IWriteOperationTResult. 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