Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
QueuedStanza.cs
1using System;
2
4{
5 internal class QueuedStanza
6 {
7 internal string StanzaType;
8 internal string Type;
9 internal string Id;
10 internal XmppAddress To;
11 internal XmppAddress From;
12 internal string Language;
13 internal string ContentXml;
14 internal ISender Sender;
15 }
16}
Contains information about one XMPP address.
Definition: XmppAddress.cs:9
Interface for senders of stanzas.
Definition: ISender.cs:10