Class Type0CommandMessageSection<TDocument>
- Namespace
- MongoDB.Driver.Core.WireProtocol.Messages
- Assembly
- MongoDB.Driver.Core.dll
Represents a Type 0 CommandMessage section.
public sealed class Type0CommandMessageSection<TDocument> : Type0CommandMessageSection
Type Parameters
TDocument
The type of the document.
- Inheritance
-
Type0CommandMessageSection<TDocument>
- Inherited Members
Constructors
Type0CommandMessageSection(TDocument, IBsonSerializer<TDocument>)
Initializes a new instance of the Type0CommandMessageSection<TDocument> class.
public Type0CommandMessageSection(TDocument document, IBsonSerializer<TDocument> documentSerializer)
Parameters
document
TDocumentThe document.
documentSerializer
IBsonSerializer<TDocument>The document serializer.
- See Also
Properties
Document
Gets the document.
public TDocument Document { get; }
Property Value
- TDocument
The document.
- See Also
DocumentSerializer
Gets the document serializer.
public IBsonSerializer<TDocument> DocumentSerializer { get; }
Property Value
- IBsonSerializer<TDocument>
The document serializer.
- See Also