Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PeerConnectionEventArgs.cs
1using System;
2
4{
8 public class PeerConnectionEventArgs : EventArgs
9 {
10 private readonly XmppClient client;
11 private readonly object state;
12 private readonly string localJid;
13 private readonly string remoteJid;
14
23 {
24 this.client = Client;
25 this.state = State;
26 this.localJid = LocalJid;
27 this.remoteJid = RemoteJid;
28 }
29
33 public XmppClient Client => this.client;
34
38 public object State => this.state;
39
43 public string LocalJid => this.localJid;
44
48 public string RemoteJid => this.remoteJid;
49 }
50}
object State
State object passed to the original request.
PeerConnectionEventArgs(XmppClient Client, object State, string LocalJid, string RemoteJid)
Peer connection event arguments.
XmppClient Client
XMPP client, if aquired, or null otherwise.
Manages an XMPP client connection. Implements XMPP, as defined in https://tools.ietf....
Definition: XmppClient.cs:58