public static RetryPolicy MakeHttpRetryPolicy(int retryCount) { ITransientErrorDetectionStrategy strategy = new HttpTransientErrorDetectionStrategy(); return Exponential(strategy, retryCount); }
public static RetryPolicy MakeHttpRetryPolicy(int retryCount) { ITransientErrorDetectionStrategy strategy = new HttpTransientErrorDetectionStrategy(); return(Exponential(strategy, retryCount)); }