Microsoft.Bcl.AsyncInterfaces 11.0.0-preview.6.26359.118

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.
36
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.
35
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
33
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
33
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
33
Tmds.DBus
Tmds.DBus Library
33
System.Private.ServiceModel
Package Description
33
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
32
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
32
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/aspnet/AspNetCore/tree/0a2e366eaf4d29b24b9a98e5782a04bef573189e
32
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/d0ca5a8d20ac50a33d5451e998a5d411a810c8d7
32
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/1d696053fcd6735aaac1902afdb0b92edbf43e71
32
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/aspnet/AspNetCore/tree/2b7e994b8a304700a09617ffc5052f0d943bbcba
32
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/704f7cb1d2cea33afb00c2097731216f121c2c73
32
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/d47e49e9c1e173ac90821f7e89cc38e710274241
32
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/febee99db845fd8766a13bdb391a07c3ee90b4ba
32
Microsoft.Extensions.DependencyInjection
Default implementation of dependency injection for Microsoft.Extensions.DependencyInjection.
32
Microsoft.Extensions.Hosting.Abstractions
.NET Core hosting and startup abstractions for applications.
32

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.6.26359.118 3 07/18/2026
11.0.0-preview.5.26302.115 3 06/12/2026
11.0.0-preview.4.26230.115 7 05/16/2026
11.0.0-preview.3.26207.106 10 04/24/2026
11.0.0-preview.2.26159.112 13 03/13/2026
11.0.0-preview.1.26104.118 15 02/19/2026
10.0.10 3 07/18/2026
10.0.9 6 06/12/2026
10.0.8 7 05/16/2026
10.0.7 10 04/24/2026
10.0.6 9 04/24/2026
10.0.5 12 03/13/2026
10.0.4 13 03/13/2026
10.0.3 13 02/19/2026
10.0.2 14 01/17/2026
10.0.1 18 12/14/2025
10.0.0 20 11/17/2025
10.0.0-rc.2.25502.107 23 10/27/2025
10.0.0-rc.1.25451.107 25 09/11/2025
10.0.0-preview.7.25380.108 23 09/05/2025
10.0.0-preview.6.25358.103 28 07/30/2025
10.0.0-preview.5.25277.114 26 07/30/2025
10.0.0-preview.4.25258.110 27 05/23/2025
10.0.0-preview.3.25171.5 27 05/23/2025
10.0.0-preview.2.25163.2 26 03/20/2025
10.0.0-preview.1.25080.5 27 02/26/2025
9.0.18 3 07/18/2026
9.0.17 6 06/12/2026
9.0.16 9 05/16/2026
9.0.15 10 04/24/2026
9.0.14 13 03/13/2026
9.0.13 15 02/19/2026
9.0.12 16 01/17/2026
9.0.11 19 11/17/2025
9.0.10 23 10/27/2025
9.0.9 27 09/10/2025
9.0.8 28 09/05/2025
9.0.7 30 07/30/2025
9.0.6 29 07/30/2025
9.0.5 29 05/22/2025
9.0.4 31 04/16/2025
9.0.3 31 03/20/2025
9.0.2 32 02/18/2025
9.0.1 32 02/18/2025
9.0.0 32 11/18/2024
9.0.0-rc.2.24473.5 28 02/18/2025
9.0.0-rc.1.24431.7 29 02/18/2025
9.0.0-preview.7.24405.7 31 02/18/2025
9.0.0-preview.6.24327.7 29 02/18/2025
9.0.0-preview.5.24306.7 31 02/18/2025
9.0.0-preview.4.24266.19 29 02/18/2025
9.0.0-preview.3.24172.9 29 02/18/2025
9.0.0-preview.2.24128.5 28 02/18/2025
9.0.0-preview.1.24080.9 30 02/18/2025
8.0.0 31 02/18/2025
8.0.0-rc.2.23479.6 31 02/18/2025
8.0.0-rc.1.23419.4 31 02/18/2025
8.0.0-preview.7.23375.6 29 02/18/2025
8.0.0-preview.6.23329.7 30 02/18/2025
8.0.0-preview.5.23280.8 29 02/18/2025
8.0.0-preview.4.23259.5 32 02/18/2025
8.0.0-preview.3.23174.8 29 02/18/2025
8.0.0-preview.2.23128.3 29 02/18/2025
8.0.0-preview.1.23110.8 29 02/18/2025
7.0.0 32 02/18/2025
7.0.0-rc.2.22472.3 31 02/18/2025
7.0.0-rc.1.22426.10 29 02/18/2025
7.0.0-preview.7.22375.6 29 02/18/2025
7.0.0-preview.6.22324.4 29 02/18/2025
7.0.0-preview.5.22301.12 29 02/18/2025
7.0.0-preview.4.22229.4 28 02/18/2025
7.0.0-preview.3.22175.4 29 02/18/2025
7.0.0-preview.2.22152.2 29 02/18/2025
7.0.0-preview.1.22076.8 29 02/18/2025
6.0.0 32 02/18/2025
6.0.0-rc.2.21480.5 29 02/18/2025
6.0.0-rc.1.21451.13 31 02/18/2025
6.0.0-preview.7.21377.19 31 02/18/2025
6.0.0-preview.6.21352.12 31 02/18/2025
6.0.0-preview.5.21301.5 29 02/18/2025
6.0.0-preview.4.21253.7 28 02/18/2025
6.0.0-preview.3.21201.4 28 02/18/2025
6.0.0-preview.2.21154.6 29 02/18/2025
6.0.0-preview.1.21102.12 28 02/18/2025
5.0.0 32 02/18/2025
5.0.0-rc.2.20475.5 30 02/18/2025
5.0.0-rc.1.20451.14 29 02/18/2025
1.1.1 29 02/18/2025
1.1.0 31 02/18/2025
1.1.0-preview3.19551.4 29 02/18/2025
1.1.0-preview2.19523.17 29 02/18/2025
1.1.0-preview1.19504.10 31 02/18/2025
1.0.0 32 02/18/2025
1.0.0-rc1.19456.4 27 02/18/2025
1.0.0-preview9.19421.4 32 02/18/2025
1.0.0-preview9.19416.11 30 02/18/2025
1.0.0-preview8.19405.3 29 02/18/2025
1.0.0-preview7.19362.9 29 02/18/2025
1.0.0-preview6.19303.8 29 02/18/2025
1.0.0-preview6.19264.9 29 02/18/2025
1.0.0-preview6.19259.10 27 02/18/2025