Exemplo n.º 1
0
        public static RetryPolicy MakeHttpRetryPolicy(int retryCount)
        {
            ITransientErrorDetectionStrategy strategy = new HttpTransientErrorDetectionStrategy();

            return Exponential(strategy, retryCount);
        }
Exemplo n.º 2
0
        public static RetryPolicy MakeHttpRetryPolicy(int retryCount)
        {
            ITransientErrorDetectionStrategy strategy = new HttpTransientErrorDetectionStrategy();

            return(Exponential(strategy, retryCount));
        }