Namespace:
MongoDB.Driver.Core.WireProtocol
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
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> -> CursorBatch
Parameters
- cursorId
- Type: SystemInt64
The cursor identifier. - postBatchResumeToken
- Type: MongoDB.BsonBsonDocument
The post batch resume token. - documents
- Type: System.Collections.GenericIReadOnlyListTDocument
The documents.
See Also