Click or drag to resize
IAsyncCursorSource<TDocument> Interface
Represents an operation that will return a cursor when executed.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.0.1
Syntax
public interface IAsyncCursorSource<TDocument>

Type Parameters

TDocument
The type of the document.

The IAsyncCursorSource< TDocument> type exposes the following members.

Methods
  NameDescription
Public methodToCursorAsync
Executes the operation and returns a cursor to the results.
Top
Extension Methods
  NameDescription
Public Extension MethodForEachAsync<TDocument>(Func<TDocument, Task>, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodForEachAsync<TDocument>(Func<TDocument, Int32, Task>, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodForEachAsync<TDocument>(Action<TDocument>, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodForEachAsync<TDocument>(Action<TDocument, Int32>, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodToListAsync<TDocument>
Returns a list containing all the documents returned by the cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.)
Top
See Also