Dasync.Collections.IAsyncEnumerable
Exposes an asynchronous enumerator, which supports a simple iteration over a non-generic collection
namespace Dasync.Collections
{
public interface IAsyncEnumerable
{
IAsyncEnumerator GetAsyncEnumerator(CancellationToken cancellationToken = default(CancellationToken));
}
}