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

◆ WriteBoundElementContentTo()

static void System.Xml.XmlBoundElement.WriteBoundElementContentTo ( DataPointer dp,
XmlWriter w )
inlinestaticprivate

Definition at line 316 of file XmlBoundElement.cs.

317 {
318 if (!dp.IsEmptyElement && dp.MoveToFirstChild())
319 {
320 do
321 {
322 WriteTo(dp, w);
323 }
324 while (dp.MoveToNextSibling());
325 dp.MoveToParent();
326 }
327 }
override void WriteTo(XmlWriter w)

References System.Xml.Dictionary, and System.Xml.XmlBoundElement.WriteTo().

Referenced by System.Xml.XmlBoundElement.WriteBoundElementTo(), System.Xml.XmlBoundElement.WriteContentTo(), and System.Xml.XmlBoundElement.WriteRootBoundElementTo().