Microsoft.Bcl.AsyncInterfaces 11.0.0-preview.2.26159.112

About

As of C# 8, the C# language has support for producing and consuming asynchronous iterators. The library types in support of those features are available in .NET Core 3.0 and newer as well as in .NET Standard 2.1. This library provides the necessary definitions of those types to support these language features on .NET Framework and on .NET Standard 2.0. This library is not necessary nor recommended when targeting versions of .NET that include the relevant support.

Key Features

  • Enables the use of C# async iterators on older .NET platforms

How to Use

using System;
using System.Collections.Generic;
using System.Threading.Tasks;

internal static class Program
{
    private static async Task Main()
    {
        Console.WriteLine("Starting...");
        await foreach (var value in GetValuesAsync())
        {
            Console.WriteLine(value);
        }
        Console.WriteLine("Finished!");

        static async IAsyncEnumerable<int> GetValuesAsync()
        {
            for (int i = 0; i < 10; i++)
            {
                await Task.Delay(TimeSpan.FromSeconds(1));
                yield return i;
            }
        }
    }
}

Main Types

The main types provided by this library are:

  • IAsyncEnumerable<T>
  • IAsyncEnumerator<T>
  • IAsyncDisposable<T>

Additional Documentation

Feedback & Contributing

Microsoft.Bcl.AsyncInterfaces is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on Microsoft.Bcl.AsyncInterfaces.

Packages Downloads
CommunityToolkit.Mvvm
This package includes a .NET MVVM library with helpers such as: - ObservableObject: a base class for objects implementing the INotifyPropertyChanged interface. - ObservableRecipient: a base class for observable objects with support for the IMessenger service. - ObservableValidator: a base class for objects implementing the INotifyDataErrorInfo interface. - RelayCommand: a simple delegate command implementing the ICommand interface. - AsyncRelayCommand: a delegate command supporting asynchronous operations and cancellation. - WeakReferenceMessenger: a messaging system to exchange messages through different loosely-coupled objects. - StrongReferenceMessenger: a high-performance messaging system that trades weak references for speed. - Ioc: a helper class to configure dependency injection service containers.
26
Avalonia
Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.
25
Microsoft.AspNetCore.Connections.Abstractions
Core components of ASP.NET Core networking protocol stack. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/af22effae4069a5dfb9b0735859de48820104f5b
23
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/2b7e994b8a304700a09617ffc5052f0d943bbcba
23
Microsoft.AspNetCore.Connections.Abstractions
Core components of ASP.NET Core networking protocol stack. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/c2a442982e736e17ae6bcadbfd8ccba278ee1be6
22
Microsoft.Extensions.DependencyInjection
Default implementation of dependency injection for Microsoft.Extensions.DependencyInjection.
22
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/62c098bc170f50feca15916e81cb7f321ffc52ff
22
Microsoft.AspNetCore.Connections.Abstractions
Core components of ASP.NET Core networking protocol stack. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/6a6d775f49623bbd742c02f89d373630668547bb
22
Microsoft.AspNetCore.Connections.Abstractions
Core components of ASP.NET Core networking protocol stack. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/564969bca155b40432d101ec35f24a0e81e6afa0
22
Microsoft.AspNetCore.Connections.Abstractions
Core components of ASP.NET Core networking protocol stack. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/f9ae0f5d30be2de3c0de61b5673bd8873231d70a
22
Microsoft.AspNetCore.Connections.Abstractions
Core components of ASP.NET Core networking protocol stack. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/f6cb1b5953598e1562d33e1cbbdae2b130792833
22
Microsoft.Extensions.Hosting.Abstractions
.NET Core hosting and startup abstractions for applications.
22
Microsoft.VisualStudio.Threading
Async synchronization primitives, async collections, TPL and dataflow extensions. The JoinableTaskFactory allows synchronously blocking the UI thread for async work. This package is applicable to any .NET application (not just Visual Studio).
22
Avalonia
Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.
21
Microsoft.Extensions.DependencyInjection.Abstractions
Abstractions for dependency injection. Commonly Used Types: Microsoft.Extensions.DependencyInjection.IServiceCollection
21
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
21
System.Net.ServerSentEvents
Provides a simple parser for server-sent events (SSE). Commonly Used Types: System.Net.ServerSentEvents.SseParser
21

https://go.microsoft.com/fwlink/?LinkID=799421

.NET Framework 4.6.2

.NET Standard 2.0

.NET Standard 2.1

  • No dependencies.

Version Downloads Last updated
11.0.0-preview.2.26159.112 3 03/13/2026
11.0.0-preview.1.26104.118 3 02/19/2026
10.0.5 3 03/13/2026
10.0.4 3 03/13/2026
10.0.3 3 02/19/2026
10.0.2 5 01/17/2026
10.0.1 9 12/14/2025
10.0.0 11 11/17/2025
10.0.0-rc.2.25502.107 14 10/27/2025
10.0.0-rc.1.25451.107 16 09/11/2025
10.0.0-preview.7.25380.108 15 09/05/2025
10.0.0-preview.6.25358.103 17 07/30/2025
10.0.0-preview.5.25277.114 17 07/30/2025
10.0.0-preview.4.25258.110 18 05/23/2025
10.0.0-preview.3.25171.5 18 05/23/2025
10.0.0-preview.2.25163.2 18 03/20/2025
10.0.0-preview.1.25080.5 19 02/26/2025
9.0.14 3 03/13/2026
9.0.13 3 02/19/2026
9.0.12 7 01/17/2026
9.0.11 10 11/17/2025
9.0.10 14 10/27/2025
9.0.9 15 09/10/2025
9.0.8 16 09/05/2025
9.0.7 18 07/30/2025
9.0.6 17 07/30/2025
9.0.5 18 05/22/2025
9.0.4 19 04/16/2025
9.0.3 19 03/20/2025
9.0.2 20 02/18/2025
9.0.1 20 02/18/2025
9.0.0 21 11/18/2024
9.0.0-rc.2.24473.5 20 02/18/2025
9.0.0-rc.1.24431.7 20 02/18/2025
9.0.0-preview.7.24405.7 20 02/18/2025
9.0.0-preview.6.24327.7 20 02/18/2025
9.0.0-preview.5.24306.7 20 02/18/2025
9.0.0-preview.4.24266.19 20 02/18/2025
9.0.0-preview.3.24172.9 20 02/18/2025
9.0.0-preview.2.24128.5 19 02/18/2025
9.0.0-preview.1.24080.9 21 02/18/2025
8.0.0 19 02/18/2025
8.0.0-rc.2.23479.6 20 02/18/2025
8.0.0-rc.1.23419.4 20 02/18/2025
8.0.0-preview.7.23375.6 20 02/18/2025
8.0.0-preview.6.23329.7 21 02/18/2025
8.0.0-preview.5.23280.8 20 02/18/2025
8.0.0-preview.4.23259.5 21 02/18/2025
8.0.0-preview.3.23174.8 20 02/18/2025
8.0.0-preview.2.23128.3 20 02/18/2025
8.0.0-preview.1.23110.8 20 02/18/2025
7.0.0 20 02/18/2025
7.0.0-rc.2.22472.3 20 02/18/2025
7.0.0-rc.1.22426.10 20 02/18/2025
7.0.0-preview.7.22375.6 20 02/18/2025
7.0.0-preview.6.22324.4 20 02/18/2025
7.0.0-preview.5.22301.12 20 02/18/2025
7.0.0-preview.4.22229.4 20 02/18/2025
7.0.0-preview.3.22175.4 20 02/18/2025
7.0.0-preview.2.22152.2 20 02/18/2025
7.0.0-preview.1.22076.8 20 02/18/2025
6.0.0 20 02/18/2025
6.0.0-rc.2.21480.5 20 02/18/2025
6.0.0-rc.1.21451.13 20 02/18/2025
6.0.0-preview.7.21377.19 20 02/18/2025
6.0.0-preview.6.21352.12 20 02/18/2025
6.0.0-preview.5.21301.5 20 02/18/2025
6.0.0-preview.4.21253.7 19 02/18/2025
6.0.0-preview.3.21201.4 20 02/18/2025
6.0.0-preview.2.21154.6 20 02/18/2025
6.0.0-preview.1.21102.12 20 02/18/2025
5.0.0 20 02/18/2025
5.0.0-rc.2.20475.5 20 02/18/2025
5.0.0-rc.1.20451.14 20 02/18/2025
1.1.1 20 02/18/2025
1.1.0 20 02/18/2025
1.1.0-preview3.19551.4 20 02/18/2025
1.1.0-preview2.19523.17 20 02/18/2025
1.1.0-preview1.19504.10 20 02/18/2025
1.0.0 20 02/18/2025
1.0.0-rc1.19456.4 20 02/18/2025
1.0.0-preview9.19421.4 23 02/18/2025
1.0.0-preview9.19416.11 20 02/18/2025
1.0.0-preview8.19405.3 20 02/18/2025
1.0.0-preview7.19362.9 20 02/18/2025
1.0.0-preview6.19303.8 20 02/18/2025
1.0.0-preview6.19264.9 20 02/18/2025
1.0.0-preview6.19259.10 20 02/18/2025