C# Class Catel.ExceptionHandling.RetryingEventArgs

Inheritance: System.EventArgs
Afficher le fichier Open project: Catel/Catel

Méthodes publiques

Méthode Description
RetryingEventArgs ( int currentRetryCount, System.TimeSpan delay, Exception lastException ) : System

Initializes a new instance of the RetryingEventArgs class.

Method Details

RetryingEventArgs() public méthode

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.
Résultat System