Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
QuickLoginResponseEventArgs.cs
2
4{
9 {
10 private readonly byte[] content;
11 private readonly object state;
12
20 byte[] Content, object State)
21 : base(e)
22 {
23 this.content = Content;
24 this.state = State;
25 }
26
30 public byte[] SignatureContent => this.content;
31
35 public object State => this.state;
36 }
37}
XmlElement Content
Content of the message. For messages that are processed by registered message handlers,...