C# Class WebApplications.Utilities.Scheduling.Scheduled.ScheduledActionResult

Show file Open project: webappsuk/CoreLibraries

Public Properties

Property Type Description
Cancelled bool
Due Instant
Duration System.Duration
Exception System.Exception
Started Instant

Protected Methods

Method Description
ScheduledActionResult ( Instant due, Instant started, System.Duration duration, [ exception, bool cancelled ) : System

Initializes a new instance of the ScheduledActionResult class.

Method Details

ScheduledActionResult() protected method

Initializes a new instance of the ScheduledActionResult class.
protected ScheduledActionResult ( Instant due, Instant started, System.Duration duration, [ exception, bool cancelled ) : System
due Instant The due.
started Instant The started.
duration System.Duration The duration.
exception [ The exception.
cancelled bool if set to the action was cancelled.
return System

Property Details

Cancelled public property

Whether this action was cancelled.
public bool Cancelled
return bool

Due public property

When the execution was due.
public Instant Due
return Instant

Duration public property

How long the execution took.
public Duration,System Duration
return System.Duration

Exception public property

Any exception that was thrown by the function.
public Exception,System Exception
return System.Exception

Started public property

When the execution actually started.
public Instant Started
return Instant