2using System.Collections.Generic;
29 private readonly XmlElement xml;
30 private readonly
string name;
32 private readonly
bool returnValue;
33 private readonly
string relatedStateVariable;
39 foreach (XmlNode N
in Xml.ChildNodes)
44 this.name = N.InnerText;
48 if (
string.Compare(N.InnerText,
"out",
true) == 0)
55 this.returnValue =
true;
58 case "relatedStateVariable":
59 this.relatedStateVariable = N.InnerText;
68 public XmlElement
Xml => this.xml;
73 public string Name => this.name;
Contains information about an argument.
string RelatedStateVariable
Related State Variable
XmlElement Xml
Underlying XML definition.
ArgumentDirection Direction
Argument Direction
bool ReturnValue
If the argument is the return value
ArgumentDirection
Direction of action arguments.