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

◆ ImportChildren()

void System.Xml.XmlDocument.ImportChildren ( XmlNode fromNode,
XmlNode toNode,
bool deep )
inlineprivate

Definition at line 1129 of file XmlDocument.cs.

1130 {
1131 for (XmlNode xmlNode = fromNode.FirstChild; xmlNode != null; xmlNode = xmlNode.NextSibling)
1132 {
1133 toNode.AppendChild(ImportNodeInternal(xmlNode, deep));
1134 }
1135 }
XmlNode ImportNodeInternal(XmlNode node, bool deep)

References System.Xml.XmlDocument.ImportNodeInternal().

Referenced by System.Xml.XmlDocument.ImportNodeInternal().