Method ToList

| MongoDB CSharp Driver API Reference (original) (raw)

Namespace

MongoDB.Driver

Assembly

MongoDB.Driver.dll

ToList(IAsyncCursor, CancellationToken)

Returns a list containing all the documents returned by a cursor.

public static List<TDocument> ToList<TDocument>(this IAsyncCursor<TDocument> source, CancellationToken cancellationToken = default)

Parameters

source IAsyncCursor

The source.

cancellationToken CancellationToken

The cancellation token.

Returns

List

The list of documents.

Type Parameters

TDocument

The type of the document.