Class JobStatusChanged
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
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
Occurred
Gets or sets when the event occurred.
public DateTimeOffset Occurred { get; set; }
Property Value
Status
Gets or sets the JobStatus.
public JobStatus Status { get; set; }