Click or drag to resize

IAggregateFluent<TResult>.OutAsync Method (String, CancellationToken)

Appends an out stage to the pipeline and executes it, and then returns a cursor to read the contents of the output collection.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntax
Task<IAsyncCursor<TResult>> OutAsync(
	string collectionName,
	CancellationToken cancellationToken = null
)

Parameters

collectionName
Type: System.String
Name of the collection.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<IAsyncCursor<TResult>>
A Task whose result is a cursor.
See Also