DotNetWorkQueue.Configuration.RetryInformation.RetryInformation C# (CSharp) Method

RetryInformation() public method

Initializes a new instance of the RetryInformation class.
public RetryInformation ( Type exceptionType, List times ) : System
exceptionType System.Type Type of the exception.
times List The retry times.
return System
        public RetryInformation(Type exceptionType, List<TimeSpan> times)
        {
            ExceptionType = exceptionType;
            Times = times;
        }
        /// <summary>
RetryInformation