Dasync.Collections.IAsyncEnumerable<T>
Exposes the asynchronous enumerator, which supports a simple iteration over a collection of typed items
namespace Dasync.Collections
{
public interface IAsyncEnumerable<out T> : IAsyncEnumerable
{
new IAsyncEnumerator<T> GetAsyncEnumerator(CancellationToken cancellationToken = default(CancellationToken));
}
}