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

◆ Value

override string System.Xml.DataDocumentXPathNavigator.Value
get

Definition at line 28 of file DataDocumentXPathNavigator.cs.

29 {
30 [UnconditionalSuppressMessage("ReflectionAnalysis", "IL2026:RequiresUnreferencedCode", Justification = "This whole class is unsafe. Constructors are marked as such.")]
31 get
32 {
34 if (nodeType != XPathNodeType.Element && nodeType != 0)
35 {
36 return _curNode.Value;
37 }
38 return _curNode.InnerText;
39 }
40 }