Table of Contents

Class JobStatusChanged

Namespace
Cratis.Chronicle.Jobs
Assembly
Cratis.Chronicle.dll

Represents a status change event that occurred for a job.

public class JobStatusChanged
Inheritance
JobStatusChanged
Inherited Members

Properties

ExceptionMessages

Gets or sets any exception messages that happened during the job step - typically when it failed.

public IEnumerable<string> ExceptionMessages { get; set; }

Property Value

IEnumerable<string>

ExceptionStackTrace

Gets or sets the stack trace for the exception that happened during the job step - typically when it failed.

public string ExceptionStackTrace { get; set; }

Property Value

string

Occurred

Gets or sets when the event occurred.

public DateTimeOffset Occurred { get; set; }

Property Value

DateTimeOffset

Status

Gets or sets the JobStatus.

public JobStatus Status { get; set; }

Property Value

JobStatus