C# Класс WebApplications.Utilities.Scheduling.ScheduledFunctionResult

The result of a scheduled action.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Due System.DateTime
Duration System.TimeSpan
Exception System.Exception
Result object
Started DateTime

Защищенные методы

Метод Описание
ScheduledFunctionResult ( DateTime due, DateTime started, TimeSpan duration, object result, Exception exception ) : System

Initializes a new instance of the ScheduledFunctionResult class.

Описание методов

ScheduledFunctionResult() защищенный Метод

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.
Результат System

Описание свойств

Due публичное свойство

When the execution was due.
public DateTime,System Due
Результат System.DateTime

Duration публичное свойство

When the execution duration.
public TimeSpan,System Duration
Результат System.TimeSpan

Exception публичное свойство

Any exception that was thrown by the function.
public Exception,System Exception
Результат System.Exception

Result публичное свойство

The result
public object Result
Результат object

Started публичное свойство

When the execution actually started.
public DateTime Started
Результат DateTime