Table of Contents

Class JsonCommand<TResult>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

A JSON string based command.

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

Type Parameters

TResult

The type of the result.

Inheritance
Command<TResult>
JsonCommand<TResult>
Inherited Members

Constructors

JsonCommand(string, IBsonSerializer<TResult>)

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

public JsonCommand(string json, IBsonSerializer<TResult> resultSerializer = null)

Parameters

json string

The json.

resultSerializer IBsonSerializer<TResult>

The result serializer.

Properties

Json

Gets the json.

public string Json { get; }

Property Value

string

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>.