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;
3using System.Text;
4
6{
11 {
16 : base()
17 {
18 }
19
24 public StateMachineVariablesUpdatedNotificationEvent(VariablesUpdatedEventArgs e)
25 : base(e)
26 {
27 }
28
32 public override async Task<string> GetDescription()
33 {
34 StringBuilder sb = new();
35
36 sb.Append(ServiceRef.Localizer[nameof(AppResources.VariablesUpdated)]);
37 sb.Append(": ");
38 sb.Append(await base.GetDescription());
39
40 return sb.ToString();
41 }
42 }
43}
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:31
static IStringLocalizer Localizer
Localization service
Definition: ServiceRef.cs:235