Microsoft.Extensions.Http 9.0.1
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 viaAddHttpClient
extension method. HttpClientFactory
cachesHttpMessageHandler
instances per configuration name, which allows to reuse resources betweenHttpClient
instances to avoid port exhaustion.HttpClientFactory
manages lifetime ofHttpMessageHandler
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
- Conceptual documentation
- Also see HttpClient guidelines conceptual doc
- API documentation
- Also see
AddHttpClient
extension method API doc
- Also see
Related Packages
- Microsoft.Extensions.DependencyInjection
- Microsoft.Extensions.Http.Polly
- Microsoft.Extensions.Http.Telemetry
Feedback & Contributing
Microsoft.Extensions.Http 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.Extensions.Http.
Packages | Downloads |
---|---|
AspNetCore.HealthChecks.OpenIdConnectServer
HealthChecks.OpenIdConnectServer is the health check package for OpenIdConnect servers
|
169 |
AspNetCore.HealthChecks.OpenIdConnectServer
HealthChecks.OpenIdConnectServer is the health check package for OpenIdConnect servers
|
53 |
AspNetCore.HealthChecks.OpenIdConnectServer
HealthChecks.OpenIdConnectServer is the health check package for OpenIdConnect servers
|
10 |
Microsoft.Identity.Web.TokenAcquisition
Implementation for higher level API for confidential client applications (ASP.NET Core and SDK/.NET).
|
10 |
SendGrid.Extensions.DependencyInjection
integrate SendGrid with HttpClientFactory and Microsoft.Extensions.DependencyInjection
|
7 |
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.
|
7 |
Sentry.Extensions.Logging
Official Microsoft.Extensions.Logging integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time.
|
6 |
AspNetCore.HealthChecks.UI
HealthChecks.UI Is a ASP.NET Core UI viewer of ASP.NET Core HealthChecks.For more information see https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks
|
6 |
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.
|
6 |
AspNetCore.HealthChecks.OpenIdConnectServer
HealthChecks.OpenIdConnectServer is the health check package for OpenIdConnect servers
|
6 |
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
|
5 |
AspNetCore.HealthChecks.UI
HealthChecks.UI is a ASP.NET Core UI viewer of ASP.NET Core HealthChecks. For more information see https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks
|
5 |
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.
|
5 |
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
5 |
.NET Framework 4.6.2
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.1)
- Microsoft.Extensions.Options (>= 9.0.1)
- Microsoft.Extensions.Logging (>= 9.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.1)
.NET Standard 2.0
- Microsoft.Extensions.Options (>= 9.0.1)
- Microsoft.Extensions.Logging (>= 9.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.1)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.1)
.NET 9.0
- Microsoft.Extensions.Options (>= 9.0.1)
- Microsoft.Extensions.Logging (>= 9.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.1)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.1)
- Microsoft.Extensions.Diagnostics (>= 9.0.1)
.NET 8.0
- Microsoft.Extensions.Logging (>= 9.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.1)
- Microsoft.Extensions.Diagnostics (>= 9.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.1)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.1)
- Microsoft.Extensions.Options (>= 9.0.1)