C# Class WebApplications.Utilities.Scheduling.ScheduledFunctionResult

The result of a scheduled action.
Afficher le fichier Open project: webappsuk/CoreLibraries

Méthodes publiques

Свойство Type Description
Due System.DateTime
Duration System.TimeSpan
Exception System.Exception
Result object
Started DateTime

Méthodes protégées

Méthode Description
ScheduledFunctionResult ( DateTime due, DateTime started, TimeSpan duration, object result, Exception exception ) : System

Initializes a new instance of the ScheduledFunctionResult class.

Method Details

ScheduledFunctionResult() protected méthode

Initializes a new instance of the ScheduledFunctionResult class.
protected ScheduledFunctionResult ( DateTime due, DateTime started, TimeSpan duration, object result, Exception exception ) : System
due DateTime The execution due.
started DateTime The execution started.
duration TimeSpan The execution duration.
result object The result.
exception Exception The exception.
Résultat System

Property Details

Due public_oe property

When the execution was due.
public DateTime,System Due
Résultat System.DateTime

Duration public_oe property

When the execution duration.
public TimeSpan,System Duration
Résultat System.TimeSpan

Exception public_oe property

Any exception that was thrown by the function.
public Exception,System Exception
Résultat System.Exception

Result public_oe property

The result
public object Result
Résultat object

Started public_oe property

When the execution actually started.
public DateTime Started
Résultat DateTime