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

◆ IsContent()

static bool System.Xml.XPath.XNodeNavigator.IsContent ( XContainer c,
XNode n )
inlinestaticprivate

Definition at line 663 of file XNodeNavigator.cs.

664 {
665 if (c.GetParent() != null || c is XElement)
666 {
667 return true;
668 }
669 return ((1 << (int)n.NodeType) & 0x182) != 0;
670 }

References System.Xml.Dictionary.

Referenced by System.Xml.XPath.XNodeNavigator.MoveToFirstChild(), System.Xml.XPath.XNodeNavigator.MoveToNext(), and System.Xml.XPath.XNodeNavigator.MoveToPrevious().