Struct OperationalStatus
Represents the operational status of the PIXL.
Inherited Members
Namespace: SI.PIXL.Client.Structs
Assembly: SI.PIXL.Client.dll
Syntax
public struct OperationalStatus
Properties
CommandName
Get the name of the command that is pending, running, or was last run.
Declaration
public string CommandName { get; }
Property Value
Type | Description |
---|---|
string |
CommandStatus
Get the status of the command that is pending, running, or was last run.
Declaration
public CommandStatus CommandStatus { get; }
Property Value
Type | Description |
---|---|
CommandStatus |
EstimatedRemainingTime
Get the estimated remaining time before the command that is pending, running, or was last run completes.
Declaration
public TimeSpan EstimatedRemainingTime { get; }
Property Value
Type | Description |
---|---|
TimeSpan |
Progress
Get the progress of the command that is pending, running, or was last run, as a normalised value.
Declaration
public double Progress { get; }
Property Value
Type | Description |
---|---|
double |
ProgressAsPercentage
Get the progress of the command that is pending, running, or was last run, as a percentage.
Declaration
public double ProgressAsPercentage { get; }
Property Value
Type | Description |
---|---|
double |
Methods
ToString()
Returns the fully qualified type name of this instance.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The fully qualified type name. |