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

◆ AncestorNode()

bool System.Xml.XmlNode.AncestorNode ( XmlNode node)
inlinepackageinherited

Definition at line 421 of file XmlNode.cs.

422 {
424 while (xmlNode != null && xmlNode != this)
425 {
426 if (xmlNode == node)
427 {
428 return true;
429 }
431 }
432 return false;
433 }
virtual ? XmlNode ParentNode
Definition XmlNode.cs:76

References System.Xml.Dictionary, and System.Xml.XmlNode.ParentNode.

Referenced by System.Xml.XmlNode.AppendChild(), System.Xml.XmlNode.InsertAfter(), and System.Xml.XmlNode.InsertBefore().