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