Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PublicKeyEventArgs.cs
2
4{
9 {
10 private readonly IE2eEndpoint key;
11
17 : this(e, e.key)
18 {
19 }
20
27 : base(e)
28 {
29 this.key = Key;
30 }
31
38 : base(new IqResultEventArgs(null, string.Empty, string.Empty, string.Empty, true, State))
39 {
40 this.key = Key;
41 }
42
46 public IE2eEndpoint Key => this.key;
47 }
48}
KeyEventArgs(KeyEventArgs e)
Event arguments for key responses
KeyEventArgs(IqResultEventArgs e, IE2eEndpoint Key)
Event arguments for key responses
KeyEventArgs(IE2eEndpoint Key, object State)
Event arguments for key responses
IE2eEndpoint Key
Public key of server endpoint.
Event arguments for responses to IQ queries.
object State
State object passed to the original request.
Abstract base class for End-to-End encryption schemes.
Definition: IE2eEndpoint.cs:12