Table of Contents

Class RenderedCommand<TResult>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

A rendered command.

public sealed class RenderedCommand<TResult>

Type Parameters

TResult

The type of the result.

Inheritance
RenderedCommand<TResult>
Inherited Members

Constructors

RenderedCommand(BsonDocument, IBsonSerializer<TResult>)

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

public RenderedCommand(BsonDocument document, IBsonSerializer<TResult> resultSerializer)

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>