Microsoft.Extensions.Http 10.0.0-preview.2.25163.2

Prefix Reserved
This is a prerelease version of Microsoft.Extensions.Http.
dotnet add package Microsoft.Extensions.Http --version 10.0.0-preview.2.25163.2
                    
NuGet\Install-Package Microsoft.Extensions.Http -Version 10.0.0-preview.2.25163.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.0-preview.2.25163.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.Extensions.Http" Version="10.0.0-preview.2.25163.2" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.Extensions.Http" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.Extensions.Http --version 10.0.0-preview.2.25163.2
                    
#r "nuget: Microsoft.Extensions.Http, 10.0.0-preview.2.25163.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Microsoft.Extensions.Http&version=10.0.0-preview.2.25163.2&prerelease
                    
Install Microsoft.Extensions.Http as a Cake Addin
#tool nuget:?package=Microsoft.Extensions.Http&version=10.0.0-preview.2.25163.2&prerelease
                    
Install Microsoft.Extensions.Http as a Cake Tool

About

Microsoft.Extensions.Http package provides AddHttpClient extension methods for IServiceCollection, IHttpClientFactory interface and its default implementation. This provides the ability to set up named HttpClient configurations in a DI container and later retrieve them via an injected IHttpClientFactory instance.

Key Features

  • The package allows to fluently set up multiple HttpClient configurations for applications that use DI via AddHttpClient extension method.
  • HttpClientFactory caches HttpMessageHandler instances per configuration name, which allows to reuse resources between HttpClient instances to avoid port exhaustion.
  • HttpClientFactory manages lifetime of HttpMessageHandler instances and recycles connections to track DNS changes.

How to Use

Note that lifetime management of HttpClient instances created by HttpClientFactory is completely different from instances created manually. The strategies are to use either short-lived clients created by HttpClientFactory or long-lived clients with PooledConnectionLifetime set up. For more information, see the HttpClient lifetime management section in the conceptual docs and Guidelines for using HTTP clients.

Configuring HttpClient

builder.Services.AddHttpClient("foo"); // adding an HttpClient named "foo" with a default configuration

builder.Services.AddHttpClient("example", c => c.BaseAddress = new Uri("https://www.example.com")) // configuring HttpClient itself
    .AddHttpMessageHandler<MyAuthHandler>() // adding additional delegating handlers to form a message handler chain
    .ConfigurePrimaryHttpMessageHandler(b => new HttpClientHandler() { AllowAutoRedirect = false }) // configuring primary handler
    .SetHandlerLifetime(TimeSpan.FromMinutes(30)); // changing the handler recycling interval

Using the configured HttpClient

public class MyService
{
    public MyService(IHttpClientFactory httpClientFactory)
    {
        _httpClientFactory = httpClientFactory; // injecting the factory
    }

    private Task<string> GetExampleAsync(Uri uri, CancellationToken ct)
    {
        HttpClient exampleClient = _httpClientFactory.CreateClient("example"); // creating the client for the specified name
        return exampleClient.GetStringAsync(uri, ct); // using the client
    }
}

Main Types

The main types provided by this library are:

  • IHttpClientFactory
  • IHttpMessageHandlerFactory
  • HttpClientFactoryServiceCollectionExtensions

Additional Documentation

Feedback & Contributing

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

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4.8K)

Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Http:

Package Downloads
Microsoft.Extensions.Http.Polly

The HttpClient factory is a pattern for configuring and retrieving named HttpClients in a composable way. This package integrates IHttpClientFactory with the Polly library, to add transient-fault-handling and resiliency through fluent policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/763b4ef31ca4df6dae07c7ee8f39ea259b6980fa

prometheus-net

.NET client library for the Prometheus monitoring and alerting system

Grpc.Net.ClientFactory

HttpClientFactory integration the for gRPC .NET client

Microsoft.Identity.Web

This package enables ASP.NET Core web apps and web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). This package is specifically used for web applications, which sign-in users, and protected web APIs, which optionally call downstream web APIs.

Refit.HttpClientFactory

Refit HTTP Client Factory Extensions

GitHub repositories (396)

Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.Http:

Repository Stars
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
rocksdanister/lively
Free and open-source software that allows users to set animated desktop wallpapers and screensavers powered by WinUI 3.
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
Version Downloads Last updated
10.0.0-preview.2.25163.2 2,772 3/18/2025
10.0.0-preview.1.25080.5 6,420 2/25/2025
9.0.3 1,370,529 3/11/2025
9.0.2 3,160,757 2/11/2025
9.0.1 3,352,875 1/14/2025
9.0.0 9,439,487 11/12/2024
9.0.0-rc.2.24473.5 186,722 10/8/2024
9.0.0-rc.1.24431.7 106,173 9/10/2024
9.0.0-preview.7.24405.7 31,901 8/13/2024
9.0.0-preview.6.24327.7 32,305 7/9/2024
9.0.0-preview.5.24306.7 56,109 6/11/2024
9.0.0-preview.4.24266.19 29,152 5/21/2024
9.0.0-preview.3.24172.9 41,160 4/11/2024
9.0.0-preview.2.24128.5 39,313 3/12/2024
9.0.0-preview.1.24080.9 20,533 2/13/2024
8.0.1 29,698,630 10/8/2024
8.0.0 123,008,328 11/14/2023
8.0.0-rc.2.23479.6 347,921 10/10/2023
8.0.0-rc.1.23419.4 187,975 9/12/2023
8.0.0-preview.7.23375.6 193,823 8/8/2023
8.0.0-preview.6.23329.7 163,803 7/11/2023
8.0.0-preview.5.23280.8 36,344 6/13/2023
8.0.0-preview.4.23259.5 324,451 5/16/2023
8.0.0-preview.3.23174.8 50,629 4/11/2023
8.0.0-preview.2.23128.3 39,780 3/14/2023
8.0.0-preview.1.23110.8 29,298 2/21/2023
7.0.0 108,954,425 11/7/2022
7.0.0-rc.2.22472.3 103,766 10/11/2022
7.0.0-rc.1.22426.10 68,638 9/14/2022
7.0.0-preview.7.22375.6 76,451 8/9/2022
7.0.0-preview.6.22324.4 98,585 7/12/2022
7.0.0-preview.5.22301.12 23,885 6/14/2022
7.0.0-preview.4.22229.4 117,341 5/10/2022
7.0.0-preview.3.22175.4 35,599 4/13/2022
7.0.0-preview.2.22152.2 99,708 3/14/2022
7.0.0-preview.1.22076.8 20,025 2/17/2022
6.0.1 455,318 11/12/2024
6.0.0 281,757,926 11/8/2021
6.0.0-rc.2.21480.5 774,318 10/12/2021
6.0.0-rc.1.21451.13 49,877 9/14/2021
6.0.0-preview.7.21377.19 159,789 8/10/2021
6.0.0-preview.6.21352.12 48,451 7/14/2021
6.0.0-preview.5.21301.5 19,993 6/15/2021
6.0.0-preview.4.21253.7 17,794 5/24/2021
6.0.0-preview.3.21201.4 24,195 4/8/2021
6.0.0-preview.2.21154.6 21,148 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21102.12 49,485 2/12/2021 6.0.0-preview.1.21102.12 is deprecated because it is no longer maintained.
5.0.0 96,285,242 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 62,417 10/13/2020 5.0.0-rc.2.20475.5 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.14 36,383 9/14/2020 5.0.0-rc.1.20451.14 is deprecated because it is no longer maintained.
5.0.0-preview.8.20407.11 9,315 8/25/2020 5.0.0-preview.8.20407.11 is deprecated because it is no longer maintained.
5.0.0-preview.7.20364.11 24,388 7/21/2020 5.0.0-preview.7.20364.11 is deprecated because it is no longer maintained.
5.0.0-preview.6.20305.6 28,454 6/25/2020 5.0.0-preview.6.20305.6 is deprecated because it is no longer maintained.
5.0.0-preview.5.20278.1 13,981 6/10/2020 5.0.0-preview.5.20278.1 is deprecated because it is no longer maintained.
5.0.0-preview.4.20251.6 167,283 5/18/2020 5.0.0-preview.4.20251.6 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.2 37,830 4/23/2020 5.0.0-preview.3.20215.2 is deprecated because it is no longer maintained.
5.0.0-preview.2.20160.3 48,735 4/2/2020 5.0.0-preview.2.20160.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20120.4 34,538 3/16/2020 5.0.0-preview.1.20120.4 is deprecated because it is no longer maintained.
3.1.32 4,180,485 12/13/2022
3.1.31 468,549 11/8/2022
3.1.30 261,574 10/11/2022
3.1.29 309,625 9/13/2022
3.1.28 947,085 8/9/2022
3.1.27 466,607 7/12/2022
3.1.26 447,142 6/14/2022
3.1.25 749,828 5/10/2022
3.1.24 739,557 4/11/2022
3.1.23 832,409 3/8/2022
3.1.22 5,109,911 12/14/2021
3.1.21 2,530,212 11/7/2021
3.1.20 1,306,379 10/11/2021
3.1.19 1,529,538 9/14/2021
3.1.18 3,923,215 8/10/2021
3.1.17 2,463,081 7/13/2021
3.1.16 6,308,689 6/8/2021
3.1.15 2,432,364 5/11/2021
3.1.14 3,054,039 4/6/2021
3.1.13 4,627,486 3/9/2021
3.1.12 3,892,319 2/9/2021
3.1.11 3,662,088 1/12/2021
3.1.10 5,967,161 11/9/2020
3.1.9 49,460,843 10/13/2020
3.1.8 17,449,273 9/8/2020
3.1.7 15,936,484 8/11/2020
3.1.6 9,229,582 7/14/2020
3.1.5 10,386,266 6/9/2020
3.1.4 15,148,371 5/12/2020
3.1.3 71,694,483 3/24/2020
3.1.2 9,386,523 2/18/2020
3.1.1 8,853,512 1/14/2020
3.1.0 62,583,629 12/3/2019
3.1.0-preview3.19553.2 19,261 11/13/2019 3.1.0-preview3.19553.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19525.4 3,375 11/1/2019 3.1.0-preview2.19525.4 is deprecated because it is no longer maintained.
3.1.0-preview1.19506.1 7,195 10/15/2019 3.1.0-preview1.19506.1 is deprecated because it is no longer maintained.
3.0.3 80,379,962 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 134,267 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.1 1,526,233 11/18/2019 3.0.1 is deprecated because it is no longer maintained.
3.0.0 15,515,877 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19456.10 19,302 9/16/2019 3.0.0-rc1.19456.10 is deprecated because it is no longer maintained.
3.0.0-preview9.19423.4 16,449 9/4/2019 3.0.0-preview9.19423.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.4 22,036 8/13/2019 3.0.0-preview8.19405.4 is deprecated because it is no longer maintained.
3.0.0-preview7.19362.4 11,003 7/23/2019 3.0.0-preview7.19362.4 is deprecated because it is no longer maintained.
3.0.0-preview6.19304.6 25,027 6/12/2019 3.0.0-preview6.19304.6 is deprecated because it is no longer maintained.
3.0.0-preview5.19227.9 17,833 5/6/2019 3.0.0-preview5.19227.9 is deprecated because it is no longer maintained.
3.0.0-preview4.19216.2 3,631 4/18/2019 3.0.0-preview4.19216.2 is deprecated because it is no longer maintained.
3.0.0-preview3.19153.1 5,586 3/6/2019 3.0.0-preview3.19153.1 is deprecated because it is no longer maintained.
3.0.0-preview.19074.2 4,582 1/29/2019 3.0.0-preview.19074.2 is deprecated because it is no longer maintained.
3.0.0-preview.18572.1 6,569 12/4/2018 3.0.0-preview.18572.1 is deprecated because it is no longer maintained.
2.2.0 62,913,530 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 76,768 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 20,889 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 12,044 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.1 54,174,861 6/18/2018
2.1.0 66,412,717 5/29/2018
2.1.0-rc1-final 100,299 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 25,085 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 34,894 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.