Class JsonCommand<TResult>
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
stringThe json.
resultSerializer
IBsonSerializer<TResult>The result serializer.
Properties
Json
Gets the json.
public string Json { get; }
Property Value
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
IBsonSerializerRegistryThe serializer registry.
Returns
- RenderedCommand<TResult>