Пример #1
0
 /// <summary>
 /// Return true if the request should be retried. Implements additional checks
 /// specific to S3 on top of the checks in StandardRetryPolicy.
 /// </summary>
 /// <param name="executionContext">Request context containing the state of the request.</param>
 /// <param name="exception">The exception thrown by the previous request.</param>
 /// <returns>Return true if the request should be retried.</returns>
 public override bool RetryForException(Runtime.IExecutionContext executionContext, Exception exception)
 {
     return(AmazonS3RetryPolicy.SharedRetryForException(executionContext, exception, RetryForExceptionSync, base.RetryForException));
 }