Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ProvisioningNavigationArgs.cs
3
5{
10 {
15 {
16 }
17
25 {
26 this.Event = Event;
27 this.BareJid = Event.BareJid;
28 this.FriendlyName = FriendlyName;
29 this.RemoteJid = Event.RemoteJid;
30 this.RemoteFriendlyName = RemoteFriendlyName;
31 this.Key = Event.Key;
32 this.ProvisioningService = Event.ProvisioningService;
33 }
34
39
43 public string? BareJid { get; }
44
48 public string? FriendlyName { get; }
49
53 public string? RemoteJid { get; }
54
58 public string? RemoteFriendlyName { get; }
59
63 public string? Key { get; }
64
68 public string? ProvisioningService { get; }
69 }
70}
An base class holding page specific navigation parameters.
ProvisioningNotificationEvent? Event
Notification event object.
ProvisioningNavigationArgs()
Base class for provisioning navigation arguments.
string? RemoteJid
Bare JID of remote entity trying to connect to device.
ProvisioningNavigationArgs(ProvisioningNotificationEvent Event, string FriendlyName, string RemoteFriendlyName)
Base class for provisioning navigation arguments.