Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
OnDestroyed.cs
2{
7 {
11 public OnDestroyed()
12 : base()
13 {
14 }
15
19 public override string LocalName => nameof(OnDestroyed);
20
25 public override IStateMachineNode Create()
26 {
27 return new OnDestroyed();
28 }
29
33 public override string Label => nameof(OnDestroyed);
34 }
35}
Event raised when the associated token gets destroyed.
Definition: OnDestroyed.cs:7
OnDestroyed()
Event raised when the associated token gets destroyed.
Definition: OnDestroyed.cs:11
override IStateMachineNode Create()
Creates a new node of the corresponding type.
Definition: OnDestroyed.cs:25