Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
To.cs
2
4{
8 public class To : Value
9 {
13 public To()
14 : base()
15 {
16 }
17
21 public override string LocalName => nameof(To);
22
27 public override IStateMachineNode Create()
28 {
29 return new To();
30 }
31 }
32}
Defines to whom a payment (or message) is sent.
Definition: To.cs:9
To()
Defines to whom a payment (or message) is sent.
Definition: To.cs:13
override IStateMachineNode Create()
Creates a new node of the corresponding type.
Definition: To.cs:27
Abstract base class for nodes with a value.
Definition: Value.cs:13