Class ComputerCmdMessage
- Namespace
- NominalSystems.Messages
- Assembly
- NominalSystems.Messages.dll
Message structure used to specify a computer software chain to run
public sealed class ComputerCmdMessage : Message<ComputerCmdPayload>
- Inheritance
-
Message<ComputerCmdPayload>ComputerCmdMessage
- Inherited Members
-
Message<ComputerCmdPayload>.PayloadMessage<ComputerCmdPayload>.ToString()Message<ComputerCmdPayload>.PayloadTypeMessage<ComputerCmdPayload>.PayloadObject
Constructors
ComputerCmdMessage()
Default constructor
public ComputerCmdMessage()
Properties
AuthenticationKey
[-] The authentication key that must be correct for the command to be executed.
[Units("-")]
public int AuthenticationKey { get; set; }
Property Value
Command
[-] The command to execute. This must be a listed command that is valid.
[Units("-")]
public string Command { get; set; }
Property Value
Parameters
[-] A list of parameters that is associated with the command, that must be entered in JSON format.
[Units("-")]
public string Parameters { get; set; }