IAsyncEnumerable<T> Interface
Definition
Exposes an enumerator that provides asynchronous iteration over values of a specified type.
generic <typename T>
public interface class IAsyncEnumerable
public interface IAsyncEnumerable<out T>
type IAsyncEnumerable<'T> = interface
Public Interface IAsyncEnumerable(Of Out T)
Type Parameters
- T
The type of the elements in the collection.
Methods
GetAsyncEnumerator(CancellationToken) |
Returns an enumerator that iterates asynchronously through the collection. |
Extension Methods
ConfigureAwait<T>(IAsyncEnumerable<T>, Boolean) |
Configures how awaits on the tasks returned from an async iteration are performed. |
WithCancellation<T>(IAsyncEnumerable<T>, CancellationToken) |
Sets the CancellationToken to be passed to GetAsyncEnumerator(CancellationToken) when iterating. |