IEnumerable — sync iteration. IAsyncEnumerable — async iteration.
IEnumerable:
IAsyncEnumerable:
1// IEnumerable2foreach (var item in GetItems())3{4 Console.WriteLine(item);5}67// IAsyncEnumerable8await foreach (var item in GetItemsAsync())9{10 Console.WriteLine(item);11}
Key: IAsyncEnumerable for streaming.