MongoDatabaseBase.RunCommandAsync<TResult> Method (Command<TResult>, ReadPreference, CancellationToken) |
Runs a command.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.16.0+eeafbea0921243a5868b81984e1083a07c1f75bc
Syntaxpublic abstract Task<TResult> RunCommandAsync<TResult>(
Command<TResult> command,
ReadPreference readPreference = null,
CancellationToken cancellationToken = default
)
Public MustOverride Function RunCommandAsync(Of TResult) (
command As Command(Of TResult),
Optional readPreference As ReadPreference = Nothing,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of TResult)
abstract RunCommandAsync :
command : Command<'TResult> *
?readPreference : ReadPreference *
?cancellationToken : CancellationToken
(* Defaults:
let _readPreference = defaultArg readPreference null
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<'TResult>
Parameters
- command
- Type: MongoDB.Driver.Command<TResult>
The command. - readPreference (Optional)
- Type: MongoDB.Driver.ReadPreference
The read preference. - cancellationToken (Optional)
- Type: System.Threading.CancellationToken
The cancellation token.
Type Parameters
- TResult
- The result type of the command.
Return Value
Type:
Task<TResult>
The result of the command.
Implements
IMongoDatabase.RunCommandAsync<TResult>(Command<TResult>, ReadPreference, CancellationToken)
See Also