C# Class Catel.ExceptionHandling.RetryingEventArgs

Inheritance: System.EventArgs
ファイルを表示 Open project: Catel/Catel

Public Methods

Method Description
RetryingEventArgs ( int currentRetryCount, System.TimeSpan delay, Exception lastException ) : System

Initializes a new instance of the RetryingEventArgs class.

Method Details

RetryingEventArgs() public method

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.
return System