System.Collections.Generic.IAsyncEnumerator<T>
Supports a simple asynchronous iteration over a generic collection.
namespace System.Collections.Generic
{
public interface IAsyncEnumerator<[System.Runtime.CompilerServices.Nullable(2)] out T> : IAsyncDisposable
{
T Current { get; }
ValueTask<bool> MoveNextAsync();
}
}