Class AssetStatus
Common status class for Asset calls
Inheritance
System.Object
AssetStatus
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: Virinco.WATS.Interface.MES.Asset
Assembly: Virinco.WATS.Interface.MES.dll
Syntax
public class AssetStatus
Properties
CalibrationDaysOverdue
Number of days overdue for a scheduled asset calibration.
Declaration
public decimal CalibrationDaysOverdue { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
MaintenanceDaysOverdue
Nnumber of days overdue for scheduled asset maintenance.
Declaration
public decimal MaintenanceDaysOverdue { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
Message
Read-write instance property for an AssetStatus message.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RunningCount
Number of uses since last calibration
Declaration
public int RunningCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
RunningCountExceeded
Number of uses since last calibration, with exceeded limit.
Declaration
public int RunningCountExceeded { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Status
Read-write instance property for an Asset_Status enum type
Declaration
public Asset_Status Status { get; set; }
Property Value
Type | Description |
---|---|
Asset_Status |
TotalCount
Asset's Total usage count. Set property only allows higher values than already stored.
Declaration
public int TotalCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
TotalCountExceeded
Total count has exceeded it's limit.
Declaration
public int TotalCountExceeded { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |