MongoCursorCloneTDocument Method (IBsonSerializer) | 
 
            Creates a clone of the cursor.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntaxpublic virtual MongoCursor<TDocument> Clone<TDocument>(
	IBsonSerializer serializer
)
Public Overridable Function Clone(Of TDocument) ( 
	serializer As IBsonSerializer
) As MongoCursor(Of TDocument)
abstract Clone : 
        serializer : IBsonSerializer -> MongoCursor<'TDocument> 
override Clone : 
        serializer : IBsonSerializer -> MongoCursor<'TDocument> Parameters
- serializer
 - Type: MongoDB.Bson.SerializationIBsonSerializer
The serializer to use. 
Type Parameters
- TDocument
 - The type of the documents returned.
 
Return Value
Type: 
MongoCursorTDocument
            A clone of the cursor.
            
See Also