Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ChatNavigationArgs.cs
3
5{
10 {
11 private readonly string? legalId;
12 private readonly string? bareJid;
13 private readonly string? friendlyName;
14
18 public ChatNavigationArgs() { }
19
25 : this(Contact.LegalId, Contact.BareJid, Contact.FriendlyName)
26 {
27 }
28
35 public ChatNavigationArgs(string? LegalId, string? BareJid, string? FriendlyName)
36 {
37 this.legalId = LegalId;
38 this.bareJid = BareJid;
39 this.friendlyName = FriendlyName;
40 }
41
45 public string? LegalId => this.legalId;
46
50 public string? BareJid => this.bareJid;
51
55 public string? FriendlyName => this.friendlyName;
56 }
57}
Contains information about a contact.
Definition: ContactInfo.cs:21
An base class holding page specific navigation parameters.
Holds navigation parameters specific to views displaying a list of contacts.
ChatNavigationArgs(string? LegalId, string? BareJid, string? FriendlyName)
Creates an instance of the ChatNavigationArgs class.
ChatNavigationArgs(ContactInfo Contact)
Creates an instance of the ChatNavigationArgs class.
ChatNavigationArgs()
Creates an instance of the ChatNavigationArgs class.