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

◆ IsConnected() [2/2]

bool System.Xml.XmlDataDocument.IsConnected ( XmlNode node)
inlineprivate

Definition at line 2138 of file XmlDataDocument.cs.

2139 {
2140 while (true)
2141 {
2142 if (node == null)
2143 {
2144 return false;
2145 }
2146 if (node == this)
2147 {
2148 break;
2149 }
2150 node = ((!(node is XmlAttribute xmlAttribute)) ? node.ParentNode : xmlAttribute.OwnerElement);
2151 }
2152 return true;
2153 }

References System.Xml.Dictionary.