Skip to content

Instantly share code, notes, and snippets.

@josephwoodward
Created July 30, 2020 00:19
Show Gist options
  • Save josephwoodward/51e35481796e72636e94046185e3e276 to your computer and use it in GitHub Desktop.
Save josephwoodward/51e35481796e72636e94046185e3e276 to your computer and use it in GitHub Desktop.
public static IHttpClientBuilder AddPolicyHandler(this IHttpClientBuilder builder, IAsyncPolicy<HttpResponseMessage> policy)
{
...
builder.AddHttpMessageHandler(() => new PolicyHttpMessageHandler(policy));
return builder;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment