AsyncEnumerable<TResult>.ToListAsync(CancellationToken) Method

Definition

Asynchronously creates a List<T> from this AsyncEnumerable<TResult> by enumerating it asynchronously.

public System.Threading.Tasks.Task<System.Collections.Generic.List<TResult>> ToListAsync (System.Threading.CancellationToken cancellationToken = default);
member this.ToListAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.List<'Result>>
Public Function ToListAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of List(Of TResult))

Parameters

cancellationToken
CancellationToken

A CancellationToken to observe while waiting for the task to complete.

Returns

Task<List<TResult>>

A task that represents the asynchronous operation. The task result contains a List<T> that contains elements from the input sequence.

Remarks

Multiple active operations on the same context instance are not supported. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context.

Applies to