Amazon.Runtime.RetryPolicy.OnRetry C# (CSharp) Method

OnRetry() public method

Virtual method that gets called before a retry request is initiated. The value returned is True by default(retry throttling feature is disabled).
public OnRetry ( IExecutionContext executionContext ) : bool
executionContext IExecutionContext The execution context which contains both the /// requests and response context.
return bool
        public virtual bool OnRetry(IExecutionContext executionContext)
        {
            return true;
        }
        /// <summary>