IAsyncEnumerable<T> Interface
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
- T
The type of values to enumerate.
This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
Get |
Returns an enumerator that iterates asynchronously through the collection. |
Configure |
Configures how awaits on the tasks returned from an async iteration will be performed. |
To |
Converts an IAsyncEnumerable<T> instance into an IEnumerable<T> that enumerates elements in a blocking manner. |
With |
Sets the CancellationToken to be passed to GetAsyncEnumerator(CancellationToken) when iterating. |
Product | Versions |
---|---|
.NET | Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Standard | 2.0 (package-provided), 2.1 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: