C# 클래스 WebApplications.Utilities.Scheduling.ScheduledFunctionResult

The result of a scheduled action.
파일 보기 프로젝트 열기: webappsuk/CoreLibraries

공개 프로퍼티들

프로퍼티 타입 설명
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