Interface IAsyncCursorSource<TDocument>
Represents an operation that will return a cursor when executed.
public interface IAsyncCursorSource<TDocument>
Type Parameters
TDocument
The type of the document.
- Extension Methods
Methods
ToCursor(CancellationToken)
Executes the operation and returns a cursor to the results.
IAsyncCursor<TDocument> ToCursor(CancellationToken cancellationToken = default)
Parameters
cancellationToken
CancellationTokenThe cancellation token.
Returns
- IAsyncCursor<TDocument>
A cursor.
ToCursorAsync(CancellationToken)
Executes the operation and returns a cursor to the results.
Task<IAsyncCursor<TDocument>> ToCursorAsync(CancellationToken cancellationToken = default)
Parameters
cancellationToken
CancellationTokenThe cancellation token.
Returns
- Task<IAsyncCursor<TDocument>>
A Task whose result is a cursor.