Class RenderedCommand<TResult>
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
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>