AggregateFluentBaseTResultOutAsync Method |
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.DriverAssembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.1.0
Syntax public abstract Task<IAsyncCursor<TResult>> OutAsync(
string collectionName,
CancellationToken cancellationToken = null
)
Public MustOverride Function OutAsync (
collectionName As String,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of IAsyncCursor(Of TResult))
abstract OutAsync :
collectionName : string *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task<IAsyncCursor<'TResult>>
Parameters
- collectionName
- Type: SystemString
Name of the collection. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TaskIAsyncCursorTResultThe fluent aggregate interface.
Implements
IAggregateFluentTResultOutAsync(String, CancellationToken)See Also