Table of Contents

Class Command<TResult>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Base class for commands.

public abstract class Command<TResult>

Type Parameters

TResult

The type of the result.

Inheritance
Command<TResult>
Derived
Inherited Members

Methods

Render(IBsonSerializerRegistry)

Renders the command to a RenderedCommand<TResult>.

public abstract RenderedCommand<TResult> Render(IBsonSerializerRegistry serializerRegistry)

Parameters

serializerRegistry IBsonSerializerRegistry

The serializer registry.

Returns

RenderedCommand<TResult>

A RenderedCommand<TResult>.

Operators

implicit operator Command<TResult>(BsonDocument)

Performs an implicit conversion from BsonDocument to Command<TResult>.

public static implicit operator Command<TResult>(BsonDocument document)

Parameters

document BsonDocument

The document.

Returns

Command<TResult>

The result of the conversion.

implicit operator Command<TResult>(string)

Performs an implicit conversion from string to Command<TResult>.

public static implicit operator Command<TResult>(string json)

Parameters

json string

The JSON string.

Returns

Command<TResult>

The result of the conversion.