Table of Contents

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
Inherited Members

Constructors

Type0CommandMessageSection(object, IBsonSerializer)

Initializes a new instance of the Type0CommandMessageSection<TDocument> class.

public Type0CommandMessageSection(object document, IBsonSerializer documentSerializer)

Parameters

document object

The document.

documentSerializer IBsonSerializer

The 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

See Also