Class WorkflowCheckResult
A unit workflow check result.
[DataContract]
public class WorkflowCheckResult
- Inheritance
-
WorkflowCheckResult
- Inherited Members
Constructors
WorkflowCheckResult(Unit)
Initializes a new instance of the WorkflowCheckResult class.
public WorkflowCheckResult(Unit unit)
Parameters
unitUnitThe unit.
Properties
Unit
Gets the unit, with only basic information set.
[DataMember]
public Unit Unit { get; }
Property Value
Remarks
Only the primitive properties will be initialized; navigation properties will not be set. For example, this allows the caller to verify that the unit model number is as expected.
WorkflowErrors
Gets the list of unit workflow errors. If the list is empty, then no problems were found.
public IList<WorkflowError> WorkflowErrors { get; }