CursorBatchTDocument Constructor (Int64, BsonDocument, IReadOnlyListTDocument) |
Namespace:
MongoDB.Driver.Core.WireProtocol
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntaxpublic CursorBatch(
long cursorId,
BsonDocument postBatchResumeToken,
IReadOnlyList<TDocument> documents
)
Public Sub New (
cursorId As Long,
postBatchResumeToken As BsonDocument,
documents As IReadOnlyList(Of TDocument)
)
new :
cursorId : int64 *
postBatchResumeToken : BsonDocument *
documents : IReadOnlyList<'TDocument> -> CursorBatchParameters
- cursorId
- Type: SystemInt64
The cursor identifier. - postBatchResumeToken
- Type: MongoDB.BsonBsonDocument
The post batch resume token. - documents
- Type: System.Collections.GenericIReadOnlyListTDocument
The documents.
See Also