Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ValueText

string System.Xml.DocumentXPathNavigator.ValueText
getprivate

Definition at line 117 of file DocumentXPathNavigator.cs.

118 {
119 get
120 {
122 string text = _source.Value;
123 XmlNode xmlNode = NextSibling(_source);
124 if (xmlNode != null && xmlNode.IsText)
125 {
127 do
128 {
129 stringBuilder.Append(xmlNode.Value);
131 }
132 while (xmlNode != null && xmlNode.IsText);
133 text = stringBuilder.ToString();
134 }
135 return text;
136 }
137 }
virtual ? string Value
Definition XmlNode.cs:62