Class BsonDocumentCommand<TResult>
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
BsonDocumentThe document.
resultSerializer
IBsonSerializer<TResult>The result serializer.
Properties
Document
Gets the document.
public BsonDocument Document { 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>