Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save javierguerrero/9bf4cf1a20f6307dcf8523a4f7e76595 to your computer and use it in GitHub Desktop.
Save javierguerrero/9bf4cf1a20f6307dcf8523a4f7e76595 to your computer and use it in GitHub Desktop.
exception_handling_csharp_chapter5_6.cs
var policy = Policy
.Handle<HttpRequestException>()
.WaitAndRetry(3, retryAttempt => TimeSpan.FromSeconds(Math.Pow(2, retryAttempt)));
policy.Execute(() => RealizarLlamadaHttp());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment