15 public class ViewIdentityNavigationArgs(
LegalIdentity? Identity,
16 string? RequestorFullJid =
null,
string? SignatoryIdentityId =
null,
17 string? PetitionId =
null,
string? Purpose =
null,
byte[]? ContentToSign =
null) :
NavigationArgs
22 public ViewIdentityNavigationArgs() :
this(
null) { }
32 public LegalIdentity? RequestorIdentity {
get; } = RequestorFullJid is
null ? null : Identity;
37 public string? RequestorFullJid {
get; } = RequestorFullJid;
42 public string? SignatoryIdentityId {
get; } = SignatoryIdentityId;
47 public string? PetitionId {
get; } = PetitionId;
52 public string? Purpose {
get; } = Purpose;
57 public byte[]? ContentToSign {
get; } = ContentToSign;
An base class holding page specific navigation parameters.