Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MachineVariablesNavigationArgs.cs
2using Waher.Script;
3
5{
10 {
15 {
16 }
17
26 {
27 this.Running = Running;
28 this.Ended = Ended;
29 this.CurrentState = CurrentState;
30 this.Variables = Variables;
31 }
32
36 public bool Running { get; }
37
41 public bool Ended { get; }
42
46 public string? CurrentState { get; }
47
51 public Variables? Variables { get; }
52 }
53}
An base class holding page specific navigation parameters.
Holds navigation parameters specific to the current state of a state-machine.
MachineVariablesNavigationArgs(bool Running, bool Ended, string CurrentState, Variables Variables)
Creates a new instance of the MachineVariablesNavigationArgs class.
MachineVariablesNavigationArgs()
Creates a new instance of the MachineVariablesNavigationArgs class.
Collection of variables.
Definition: Variables.cs:25