Microsoft.Extensions.Http 8.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 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.

Showing the top 20 packages that depend on Microsoft.Extensions.Http.

Packages Downloads
Salazki.Mdm.Client
Package Description
1,233
OnlineStorage
Клиентская библиотека для доступа к облачному файловому хранилищу OnlineStorage
933
Solo.Connector1C.Client
Package Description
853
Epass.Integration.Sigur
Package Description
640
OnlineStorage
Клиентская библиотека для доступа к облачному файловому хранилищу OnlineStorage
207
OnlineStorage
Клиентская библиотека для доступа к облачному файловому хранилищу OnlineStorage
175
Salazki2.Platform.Blazor
Package Description
143
OnlineStorage
Клиентская библиотека для доступа к облачному файловому хранилищу OnlineStorage
132
Solo.Connector1C.Client
Package Description
80
Salazki2.Platform.Blazor
Package Description
65
Salazki2.Platform.Blazor
Package Description
54
Epass.Integration.Sigur
Package Description
51
Salazki2.Platform.Blazor
Package Description
39
Demands
Demands Public API Client for .NET Standard
39
Salazki2.Mdm.Client
Package Description
35
Salazki2.Platform.Blazor
Package Description
34
Demands
Demands Public API Client for .NET Standard
30
Solo.Demands.Mobile
Package Description
30
Salazki2.Mdm.Client
Package Description
30
Salazki2.Platform.Blazor
Package Description
27

Version Downloads Last updated
8.0.1 1,007 05/09/2025
8.0.0 1,574 05/09/2025