I want to apply resiliency strategy using Polly.
I am using HttpClientFactory
from ASP.NET Core 2.1. I found some guide on Polly GitHub wiki. There are two ways of such policy configuration - using AddTransientHttpErrorPolicy
and AddPolicyHandler
, but not much of an explanation.
What are the differences between them?