Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SignaturePetitionEventArgs.cs
1using System.Xml;
3
5{
10 {
11 private readonly string signatoryIdentityId;
12 private readonly byte[] content;
13
31 string SignatoryIdentityId, string PetitionId, string Purpose, byte[] Content, string ClientEndpoint, XmlElement Context,
32 string[] Properties, string[] Attachments)
34 {
35 this.signatoryIdentityId = SignatoryIdentityId;
36 this.content = Content;
37 }
38
42 public string SignatoryIdentityId => this.signatoryIdentityId;
43
47 public byte[] ContentToSign => this.content;
48 }
49}
Abstract base class for petition event arguments.
string[] Attachments
Optional attachment hints to provide to the remote party, highlighting which attachments will be used...
LegalIdentity RequestorIdentity
Legal Identity of requesting entity.
string ClientEndpoint
Remote endpoint of remote party client.
string[] Properties
Optional property hints to provide to the remote party, highlighting which properties will be used in...
XmlElement Context
Any machine-readable context XML element available in the petition.
SignaturePetitionEventArgs(MessageEventArgs e, LegalIdentity RequestorIdentity, string RequestorFullJid, string SignatoryIdentityId, string PetitionId, string Purpose, byte[] Content, string ClientEndpoint, XmlElement Context, string[] Properties, string[] Attachments)
Event arguments for legal identity petitions
Event arguments for message events.
XmlElement Content
Content of the message. For messages that are processed by registered message handlers,...