Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
CurrentStateEventArgs.cs
1using System;
3using Waher.Script;
4
6{
11 {
23 : base(e)
24 {
25 this.CurrentState = CurrentState;
26 this.Ended = Ended;
27 this.Running = Running;
28 this.Expires = Expires;
29 this.Variables = Variables;
30 }
31
35 public string CurrentState { get; }
36
40 public bool Ended { get; }
41
45 public bool Running { get; }
46
50 public DateTime Expires { get; }
51
55 public Variables Variables { get; }
56 }
57}
Event arguments for current state callback methods.
DateTime Expires
When the state-machine object expires.
string CurrentState
Current state of state-machine.
Variables Variables
Current state-machine variables.
CurrentStateEventArgs(string CurrentState, bool Ended, bool Running, DateTime Expires, Variables Variables, IqResultEventArgs e)
Event arguments for current state callback methods.
Event arguments for responses to IQ queries.
Collection of variables.
Definition: Variables.cs:25