Skip to content

Instantly share code, notes, and snippets.

@ksysiekj
Created February 25, 2017 22:35
Show Gist options
  • Save ksysiekj/20f76108f666b63204b6d1c6c7bc8895 to your computer and use it in GitHub Desktop.
Save ksysiekj/20f76108f666b63204b6d1c6c7bc8895 to your computer and use it in GitHub Desktop.
RetryHandler.Retry<WebException>(() =>
{
string content = DownloadContent();
Console.Write(content);
}, 6, 500, httpRequestException => httpRequestException.Status == WebExceptionStatus.Timeout
|| httpRequestException.Status == WebExceptionStatus.ConnectFailure, Logger);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment