IAsyncCursorSourceTDocumentToCursor Method |
Executes the operation and returns a cursor to the results.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax IAsyncCursor<TDocument> ToCursor(
CancellationToken cancellationToken = default
)
Function ToCursor (
Optional cancellationToken As CancellationToken = Nothing
) As IAsyncCursor(Of TDocument)
abstract ToCursor :
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> IAsyncCursor<'TDocument>
Parameters
- cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
IAsyncCursorTDocumentA cursor.
See Also