MongoCursorCreate Method (Type, MongoCollection, IMongoQuery, ReadPreference, IBsonSerializer) | 
 Note: This API is now obsolete.
            Creates a cursor.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax[ObsoleteAttribute("Use a method that returns a cursor instead.")]
public static MongoCursor Create(
	Type documentType,
	MongoCollection collection,
	IMongoQuery query,
	ReadPreference readPreference,
	IBsonSerializer serializer
)<ObsoleteAttribute("Use a method that returns a cursor instead.")>
Public Shared Function Create ( 
	documentType As Type,
	collection As MongoCollection,
	query As IMongoQuery,
	readPreference As ReadPreference,
	serializer As IBsonSerializer
) As MongoCursor[<ObsoleteAttribute("Use a method that returns a cursor instead.")>]
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