Table of Contents

Class BsonDocumentCommand<TResult>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

A BsonDocument based command.

public sealed class BsonDocumentCommand<TResult> : Command<TResult>

Type Parameters

TResult

The type of the result.

Inheritance
Command<TResult>
BsonDocumentCommand<TResult>
Inherited Members

Constructors

BsonDocumentCommand(BsonDocument, IBsonSerializer<TResult>)

Initializes a new instance of the BsonDocumentCommand<TResult> class.

public BsonDocumentCommand(BsonDocument document, IBsonSerializer<TResult> resultSerializer = null)

Parameters

document BsonDocument

The document.

resultSerializer IBsonSerializer<TResult>

The result serializer.

Properties

Document

Gets the document.

public BsonDocument Document { get; }

Property Value

BsonDocument

ResultSerializer

Gets the result serializer.

public IBsonSerializer<TResult> ResultSerializer { get; }

Property Value

IBsonSerializer<TResult>

Methods

Render(IBsonSerializerRegistry)

Renders the command to a RenderedCommand<TResult>.

public override RenderedCommand<TResult> Render(IBsonSerializerRegistry serializerRegistry)

Parameters

serializerRegistry IBsonSerializerRegistry

The serializer registry.

Returns

RenderedCommand<TResult>

A RenderedCommand<TResult>.