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.
I consider to use Polly to create policy to log exception and rethrow. I didn't find an existing method that …
c# exception pollyI am using Polly framework for transient fault handling. For synchronous operations Polly circuit breaker policy works fine but when …
c# async-await circuit-breaker pollyI'm making calls to an external API and want to deal with the event that a call returns an Unauthorized …
c# asp.net-mvc pollyI'm using Polly to catch an exception while calling a Pittney Bowes Geocoder service. I'm using a g1client library …
c# networking geocoding unhandled-exception pollyI am trying to get the timout Policy to work correctly. I have the following requirement while integrating an api. …
c# polly transient-failure