Microsoft.Extensions.Http 8.0.0-rc.2.23479.6
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 |
---|---|
ace.Net.Http
A simple library that wraps popular patterns used with HttpClient into RestApiClient.
|
6 |
MailChimp.Net.V3
A .NET Wrapper for Mail Chimp v3.0 API
|
6 |
MailChimp.Net.V3
A .NET Wrapper for Mail Chimp v3.0 API
|
7 |
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application.
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.
|
6 |
Microsoft.Azure.WebJobs.Extensions.DurableTask
Azure WebJobs SDK Extension for the Durable Task Framework
|
6 |
Microsoft.Azure.WebJobs.Extensions.DurableTask
Azure WebJobs SDK Extension for the Durable Task Framework
|
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 |
Microsoft.Identity.Web.TokenAcquisition
Implementation for higher level API for confidential client applications (ASP.NET Core and SDK/.NET).
|
6 |
Microsoft.PowerPlatform.Dataverse.Client
This package contains the .net core Dataverse ServiceClient. Used to connect to Microsoft Dataverse. This Package has been authored by the Microsoft Dataverse SDK team.
|
10 |
OpenAI
A simple C# / .NET library to use with OpenAI's GPT-3 API, as well as ChatGPT, GPT-4, DALL·E, etc. Independently developed, this is not an official library and I am not affiliated with OpenAI. An OpenAI or Azure OpenAI account is required.
|
6 |
Snowflake.Data
Snowflake Connector for .NET
|
6 |
.NET Framework 4.6.2
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Options (>= 8.0.0-rc.2.23479.6)
.NET Standard 2.0
- Microsoft.Extensions.Options (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0-rc.2.23479.6)
.NET 8.0
- Microsoft.Extensions.Options (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Diagnostics (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0-rc.2.23479.6)
.NET 7.0
- Microsoft.Extensions.Options (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0-rc.2.23479.6)
.NET 6.0
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Options (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0-rc.2.23479.6)