Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
XmppRequest.cs
1using System.Threading.Tasks;
2using System.Xml;
5
7{
11 public abstract class XmppRequest : XmppOperation
12 {
16 public XmppRequest()
17 : base()
18 {
19 }
20
24 [DefaultValueNull]
25 public string ResponseVariable { get; set; }
26
31 public override Task Parse(XmlElement Xml)
32 {
33 this.ResponseVariable = XML.Attribute(Xml, "responseVariable");
34
35 return base.Parse(Xml);
36 }
37 }
38}
Helps with common XML-related tasks.
Definition: XML.cs:19
static string Attribute(XmlElement E, string Name)
Gets the value of an XML attribute.
Definition: XML.cs:914
override Task Parse(XmlElement Xml)
Parses the State-machine node.
Definition: XmppRequest.cs:31