Catel.ExceptionHandling.RetryingEventArgs.RetryingEventArgs C# (CSharp) Метод

RetryingEventArgs() публичный Метод

Initializes a new instance of the RetryingEventArgs class.
The is null.
public RetryingEventArgs ( int currentRetryCount, System.TimeSpan delay, Exception lastException ) : System
currentRetryCount int The current retry attempt count.
delay System.TimeSpan The delay that indicates how long the current thread will be suspended before the next iteration is invoked.
lastException System.Exception The exception that caused the retry conditions to occur.
Результат System
        public RetryingEventArgs(int currentRetryCount, TimeSpan delay, Exception lastException)
        {
            Argument.IsNotNull("lastException", lastException);

            CurrentRetryCount = currentRetryCount;
            Delay = delay;
            LastException = lastException;
        }
        #endregion
RetryingEventArgs