Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
StateMachineVariablesUpdatedNotificationEvent.cs
2using NeuroFeatures;
4using System.Text;
5
7{
12 {
17 : base()
18 {
19 }
20
26 : base(e)
27 {
28 }
29
33 public override async Task<string> GetDescription()
34 {
35 StringBuilder sb = new();
36
38 sb.Append(": ");
39 sb.Append(await base.GetDescription());
40
41 return sb.ToString();
42 }
43 }
44}
A strongly-typed resource class, for looking up localized strings, etc.
static string VariablesUpdated
Looks up a localized string similar to Variables Updated.
Contains information about a change in internal variables of a state-machine associated with a token.
StateMachineVariablesUpdatedNotificationEvent()
Contains information about a change in internal variables of a state-machine associated with a token.
StateMachineVariablesUpdatedNotificationEvent(VariablesUpdatedEventArgs e)
Contains information about a change in internal variables of a state-machine associated with a token.
Base class that references services in the app.
Definition: ServiceRef.cs:43
static IReportingStringLocalizer Localizer
Localization service
Definition: ServiceRef.cs:370
Event arguments events when the variables of a state-machine has changed.