Table of Contents

Class JobStepStatusChanged

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

Represents a state change event.

public class JobStepStatusChanged
Inheritance
JobStepStatusChanged
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 JobStepStatus.

public JobStepStatus Status { get; set; }

Property Value

JobStepStatus