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;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
8{
12 public class PeerConnectionEventArgs : EventArgs
13 {
14 private readonly XmppClient client;
15 private readonly object state;
16 private readonly string localJid;
17 private readonly string remoteJid;
18
27 {
28 this.client = Client;
29 this.state = State;
30 this.localJid = LocalJid;
31 this.remoteJid = RemoteJid;
32 }
33
37 public XmppClient Client => this.client;
38
42 public object State => this.state;
43
47 public string LocalJid => this.localJid;
48
52 public string RemoteJid => this.remoteJid;
53 }
54}
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:59