Table of Contents

Interface IAsyncCursorSource<TDocument>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.Core.dll

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 CancellationToken

The 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 CancellationToken

The cancellation token.

Returns

Task<IAsyncCursor<TDocument>>

A Task whose result is a cursor.