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

◆ RemoveNodesSkipNotify()

void System.Xml.Linq.XContainer.RemoveNodesSkipNotify ( )
inlineprivateinherited

Definition at line 1306 of file XContainer.cs.

1307 {
1309 if (xNode != null)
1310 {
1311 do
1312 {
1313 XNode xNode2 = xNode.next;
1314 xNode.parent = null;
1315 xNode.next = null;
1316 xNode = xNode2;
1317 }
1318 while (xNode != content);
1319 }
1320 content = null;
1321 }

References System.Xml.Linq.XNode.XNode(), System.Xml.Linq.XContainer.content, and System.Xml.Dictionary.

Referenced by System.Xml.Linq.XContainer.RemoveNodes().