Click or drag to resize

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
Syntax
public abstract Task<TResult> RunCommandAsync<TResult>(
	Command<TResult> command,
	ReadPreference readPreference = null,
	CancellationToken cancellationToken = default
)

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