Class JobPhase
Wraps a job phase.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Moraware.JobTrackerAPI5
Assembly: JobTrackerAPI5.dll
Syntax
public class JobPhase : JTObject
Constructors
JobPhase(Int32)
Creates a job phase object intended to be used to update a job phase.
Declaration
public JobPhase(int jobPhaseId_)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | jobPhaseId_ | Identifies an existing job phase. |
JobPhase(Int32, String)
Creates a job phase object intended to be used to create a new job phase.
Declaration
public JobPhase(int jobId_, string name_)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | jobId_ | Job to which this phase belongs. |
| System.String | name_ | Name to use for the new job phase. |
Properties
JobId
The job to which this phase belongs.
Declaration
public int JobId { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
JobPhaseId
JobPhase id.
Declaration
public int JobPhaseId { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
JobPhaseName
JobPhase name.
Declaration
public string JobPhaseName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
SeqNum
One-based index of this job phase amongst all of the job's phases.
Declaration
public int SeqNum { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |