Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PeerSynchronizedEventArgs.cs
1using System;
2
4{
8 public class PeerSynchronizedEventArgs : EventArgs
9 {
10 private readonly string fullJID;
11 private readonly bool hasE2E;
12 private readonly bool hasP2P;
13
21 {
22 this.fullJID = FullJID;
23 this.hasE2E = HasE2E;
24 this.hasP2P = HasP2P;
25 }
26
30 public string FullJID => this.fullJID;
31
35 public bool HasE2E => this.hasE2E;
36
40 public bool HasP2P => this.hasP2P;
41 }
42}
Event arguments for peer synchronization events.
bool HasP2P
If Peer-to-peer address information was found in presence stanza.
PeerSynchronizedEventArgs(string FullJID, bool HasE2E, bool HasP2P)
Event arguments for peer synchronization events.
bool HasE2E
If End-to-End encryption information was found in presence stanza.