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

◆ IsFoliated()

static bool System.Xml.DataPointer.IsFoliated ( XmlNode node)
inlinestaticprivate

Definition at line 351 of file DataPointer.cs.

352 {
353 if (node == null || !(node is XmlBoundElement))
354 {
355 return true;
356 }
357 return ((XmlBoundElement)node).IsFoliated;
358 }

References System.Xml.Dictionary.

Referenced by System.Xml.DataPointer.MoveToAttribute(), and System.Xml.DataPointer.MoveToFirstChild().