MongoCursorCreate Method (Type, MongoCollection, IMongoQuery, ReadPreference, IBsonSerializer) |
Creates a cursor.
Namespace: MongoDB.DriverAssembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.3.0
Syntax public static MongoCursor Create(
Type documentType,
MongoCollection collection,
IMongoQuery query,
ReadPreference readPreference,
IBsonSerializer serializer
)
Public Shared Function Create (
documentType As Type,
collection As MongoCollection,
query As IMongoQuery,
readPreference As ReadPreference,
serializer As IBsonSerializer
) As MongoCursor
static member Create :
documentType : Type *
collection : MongoCollection *
query : IMongoQuery *
readPreference : ReadPreference *
serializer : IBsonSerializer -> MongoCursor
Parameters
- documentType
- Type: SystemType
The type of the returned documents. - collection
- Type: MongoDB.DriverMongoCollection
The collection to query. - query
- Type: MongoDB.DriverIMongoQuery
A query. - readPreference
- Type: MongoDB.DriverReadPreference
The read preference. - serializer
- Type: MongoDB.Bson.SerializationIBsonSerializer
The serializer.
Return Value
Type:
MongoCursor
A cursor.
See Also