Class JobProgress
Represents progress of a job.
public class JobProgress
- Inheritance
-
JobProgress
- Inherited Members
Properties
FailedSteps
Gets or sets the failed number of steps.
public int FailedSteps { get; init; }
Property Value
IsCompleted
Gets whether or not the job is completed.
public bool IsCompleted { get; init; }
Property Value
IsStopped
Gets whether the job is completed where it also can have stopped steps.
public bool IsStopped { get; init; }
Property Value
Message
Gets or sets the current message associated with the progress.
public JobProgressMessage Message { get; init; }
Property Value
StoppedSteps
Gets or sets the number of stopped steps.
public int StoppedSteps { get; set; }
Property Value
SuccessfulSteps
Gets or sets the completed number of steps.
public int SuccessfulSteps { get; init; }
Property Value
TotalSteps
Gets or sets the total number of steps.
public int TotalSteps { get; init; }