Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ViewIdentityNavigationArgs.cs
3
5{
15 public class ViewIdentityNavigationArgs(LegalIdentity? Identity,
16 string? RequestorFullJid = null, string? SignatoryIdentityId = null,
17 string? PetitionId = null, string? Purpose = null, byte[]? ContentToSign = null) : NavigationArgs
18 {
22 public ViewIdentityNavigationArgs() : this(null) { }
23
27 public LegalIdentity? Identity { get; } = Identity;
28
32 public LegalIdentity? RequestorIdentity { get; } = RequestorFullJid is null ? null : Identity;
33
37 public string? RequestorFullJid { get; } = RequestorFullJid;
38
42 public string? SignatoryIdentityId { get; } = SignatoryIdentityId;
43
47 public string? PetitionId { get; } = PetitionId;
48
52 public string? Purpose { get; } = Purpose;
53
57 public byte[]? ContentToSign { get; } = ContentToSign;
58
59 }
60}
An base class holding page specific navigation parameters.