MongoCursorCloneTDocument Method (IBsonSerializer) |
Creates a clone of the cursor.
Namespace: MongoDB.DriverAssembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.3.0
Syntax public 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