Class Type1CommandMessageSection<TDocument>
- Namespace
- MongoDB.Driver.Core.WireProtocol.Messages
- Assembly
- MongoDB.Driver.Core.dll
Represents a Type 1 CommandMessage section.
public class Type1CommandMessageSection<TDocument> : Type1CommandMessageSection where TDocument : class
Type Parameters
TDocument
The type of the document.
- Inheritance
-
Type1CommandMessageSection<TDocument>
- Inherited Members
Constructors
Type1CommandMessageSection(string, IBatchableSource<TDocument>, IBsonSerializer<TDocument>, IElementNameValidator, int?, int?)
Initializes a new instance of the Type1CommandMessageSection<TDocument> class.
public Type1CommandMessageSection(string identifier, IBatchableSource<TDocument> documents, IBsonSerializer<TDocument> documentSerializer, IElementNameValidator elementNameValidator, int? maxBatchCount, int? maxDocumentSize)
Parameters
identifier
stringThe identifier.
documents
IBatchableSource<TDocument>The documents.
documentSerializer
IBsonSerializer<TDocument>The document serializer.
elementNameValidator
IElementNameValidatorThe element name validator.
maxBatchCount
int?The maximum batch count.
maxDocumentSize
int?Maximum size of the document.
- See Also
Properties
DocumentSerializer
Gets the document serializer.
public IBsonSerializer<TDocument> DocumentSerializer { get; }
Property Value
- IBsonSerializer<TDocument>
The document serializer.
- See Also
DocumentType
Gets the type of the document.
public override Type DocumentType { get; }
Property Value
- Type
The type of the document.
- See Also
Documents
Gets the documents.
public IBatchableSource<TDocument> Documents { get; }
Property Value
- IBatchableSource<TDocument>
The documents.
- See Also