Click or drag to resize
IAsyncCursorExtensions Class
Represents extension methods for IAsyncCursor.
Inheritance Hierarchy
System.Object
  MongoDB.Driver.IAsyncCursorExtensions

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.0.1
Syntax
public static class IAsyncCursorExtensions

The IAsyncCursorExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberForEachAsync<TDocument>(IAsyncCursor<TDocument>, Action<TDocument>, CancellationToken)
Calls a delegate for each document returned by the cursor.
Public methodStatic memberForEachAsync<TDocument>(IAsyncCursor<TDocument>, Action<TDocument, Int32>, CancellationToken)
Calls a delegate for each document returned by the cursor.
Public methodStatic memberForEachAsync<TDocument>(IAsyncCursor<TDocument>, Func<TDocument, Task>, CancellationToken)
Calls a delegate for each document returned by the cursor.
Public methodStatic memberForEachAsync<TDocument>(IAsyncCursor<TDocument>, Func<TDocument, Int32, Task>, CancellationToken)
Calls a delegate for each document returned by the cursor.
Public methodStatic memberToListAsync<TDocument>
Returns a list containing all the documents returned by a cursor.
Top
See Also