Microsoft.Extensions.Http.Resilience 9.0.0-preview.3.24209.3

Prefix Reserved
This is a prerelease version of Microsoft.Extensions.Http.Resilience.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Microsoft.Extensions.Http.Resilience --version 9.0.0-preview.3.24209.3
                    
NuGet\Install-Package Microsoft.Extensions.Http.Resilience -Version 9.0.0-preview.3.24209.3
                    
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.Resilience" Version="9.0.0-preview.3.24209.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.Extensions.Http.Resilience" Version="9.0.0-preview.3.24209.3" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.Extensions.Http.Resilience" />
                    
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.Resilience --version 9.0.0-preview.3.24209.3
                    
#r "nuget: Microsoft.Extensions.Http.Resilience, 9.0.0-preview.3.24209.3"
                    
#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.Resilience&version=9.0.0-preview.3.24209.3&prerelease
                    
Install Microsoft.Extensions.Http.Resilience as a Cake Addin
#tool nuget:?package=Microsoft.Extensions.Http.Resilience&version=9.0.0-preview.3.24209.3&prerelease
                    
Install Microsoft.Extensions.Http.Resilience as a Cake Tool

Microsoft.Extensions.Http.Resilience

Resilience mechanisms for HttpClient built on the Polly framework.

Install the package

From the command-line:

dotnet add package Microsoft.Extensions.Http.Resilience

Or directly in the C# project file:

<ItemGroup>
  <PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="[CURRENTVERSION]" />
</ItemGroup>

Usage Examples

When configuring an HttpClient through the HTTP client factory the following extensions can add a set of pre-configured hedging or resilience behaviors. These pipelines combine multiple resilience strategies with pre-configured defaults.

  • The total request timeout pipeline applies an overall timeout to the execution, ensuring that the request including hedging attempts, does not exceed the configured limit.
  • The retry pipeline retries the request in case the dependency is slow or returns a transient error.
  • The rate limiter pipeline limits the maximum number of requests being send to the dependency.
  • The circuit breaker blocks the execution if too many direct failures or timeouts are detected.
  • The attempt timeout pipeline limits each request attempt duration and throws if its exceeded.

Resilience

The standard resilience pipeline makes use of the above strategies to ensure HTTP requests can be sent reliably.

var clientBuilder = services.AddHttpClient("MyClient");

clientBuilder.AddStandardResilienceHandler().Configure(o =>
{
    o.CircuitBreaker.MinimumThroughput = 10;
});

Hedging

The standard hedging pipeline uses a pool of circuit breakers to ensure that unhealthy endpoints are not hedged against. By default, the selection from pool is based on the URL Authority (scheme + host + port). It is recommended that you configure the way the strategies are selected by calling the SelectPipelineByAuthority() extensions. The last three strategies are applied to each individual endpoint.

var clientBuilder = services.AddHttpClient("MyClient");

clientBuilder.AddStandardHedgingHandler().Configure(o =>
{
    o.TotalRequestTimeout.Timeout = TimeSpan.FromSeconds(10);
});

Custom Resilience

For more granular control a custom pipeline can be constructed.

var clientBuilder = services.AddHttpClient("MyClient");

clientBuilder.AddResilienceHandler("myHandler", b =>
{
    b.AddFallback(new FallbackStrategyOptions<HttpResponseMessage>()
    {
        FallbackAction = _ => Outcome.FromResultAsValueTask(new HttpResponseMessage(HttpStatusCode.ServiceUnavailable))
    })
    .AddConcurrencyLimiter(100)
    .AddRetry(new HttpRetryStrategyOptions())
    .AddCircuitBreaker(new HttpCircuitBreakerStrategyOptions())
    .AddTimeout(new HttpTimeoutStrategyOptions());
});

Feedback & Contributing

We welcome feedback and contributions in our GitHub repo.

Product Compatible and additional computed target framework versions.
.NET 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. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (125)

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

Package Downloads
OpenIddict.Validation.SystemNetHttp

System.Net.Http integration package for the OpenIddict validation services.

OpenIddict.Client.SystemNetHttp

System.Net.Http integration package for the OpenIddict client services.

OrchardCore.Users

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. The Users module adds user management functionality.

Aspire.Hosting.Testing

Testing support for the .NET Aspire application model.

OrchardCore.OpenId

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Provides OpenId Connect client, server and management features.

GitHub repositories (89)

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

Repository Stars
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
ardalis/CleanArchitecture
Clean Architecture Solution Template: A proven Clean Architecture Template for ASP.NET Core 9
App-vNext/Polly
Polly is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner. From version 6.0.1, Polly targets .NET Standard 1.1 and 2.0+.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
dotnet/orleans
Cloud Native application framework for .NET
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10 Preview 2, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
dotnet/eShop
A reference .NET application implementing an eCommerce site
OrchardCMS/OrchardCore
Orchard Core is an open-source modular and multi-tenant application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework.
elsa-workflows/elsa-core
A .NET workflows library
fullstackhero/dotnet-starter-kit
Production Grade Cloud-Ready .NET 9 Starter Kit (Web API + Blazor Client) with Multitenancy Support, and Clean/Modular Architecture that saves roughly 200+ Development Hours! All Batteries Included.
openiddict/openiddict-core
Flexible and versatile OAuth 2.0/OpenID Connect stack for .NET
dotnet/aspire
Tools, templates, and packages to accelerate building observable, production-ready apps
microsoft/fluentui-blazor
Microsoft Fluent UI Blazor components library. For use with ASP.NET Core Blazor applications
oskardudycz/EventSourcing.NetCore
Examples and Tutorials of Event Sourcing in .NET
thomhurst/TUnit
A modern, fast and flexible .NET testing framework
davidfowl/TodoApp
Todo application with ASP.NET Core Blazor WASM, Minimal APIs and Authentication
SciSharp/BotSharp
AI Multi-Agent Framework in .NET
Pixeval/Pixeval
Wow. Yet another Pixiv client!
CommunityToolkit/Maui
The .NET MAUI Community Toolkit is a community-created library that contains .NET MAUI Extensions, Advanced UI/UX Controls, and Behaviors to help make your life as a .NET MAUI developer easier
Version Downloads Last updated
9.4.0 18,667 4/8/2025
9.3.0 468,852 3/11/2025
9.2.0 870,746 2/11/2025
9.1.0 650,129 1/14/2025
9.0.0 1,877,703 11/12/2024
9.0.0-preview.9.24507.7 98,463 10/8/2024
9.0.0-preview.8.24460.1 28,681 9/10/2024
9.0.0-preview.7.24412.10 6,069 8/14/2024
9.0.0-preview.6.24353.1 4,942 7/10/2024
9.0.0-preview.5.24311.7 7,905 6/11/2024
9.0.0-preview.4.24271.2 7,983 5/21/2024
9.0.0-preview.3.24209.3 9,173 4/11/2024
9.0.0-preview.2.24157.4 3,499 3/12/2024
9.0.0-preview.1.24108.1 2,140 2/13/2024
8.10.0 2,863,381 10/8/2024
8.9.1 1,307,325 9/6/2024
8.9.0 60,408 9/5/2024
8.8.0 795,337 8/13/2024
8.7.0 1,356,825 7/10/2024
8.6.0 853,912 6/11/2024
8.5.0 1,180,654 5/14/2024
8.4.0 2,011,680 4/9/2024
8.3.0 667,962 3/12/2024
8.2.0 1,088,465 2/13/2024
8.1.0 532,564 1/9/2024
8.0.0 810,763 11/14/2023
8.0.0-rc.2.23510.2 2,754 10/10/2023
8.0.0-rc.1.23453.1 1,348 9/12/2023
8.0.0-preview.7.23407.5 1,004 8/8/2023
8.0.0-preview.6.23360.2 752 7/12/2023
8.0.0-preview.5.23308.3 2,427 6/14/2023
8.0.0-preview.4.23273.7 2,126 5/23/2023