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

◆ XsltCopyOf()

void System.Xml.Xsl.Runtime.XmlQueryOutput.XsltCopyOf ( XPathNavigator navigator)
inline

Definition at line 565 of file XmlQueryOutput.cs.

566 {
567 if (navigator is RtfNavigator rtfNavigator)
568 {
569 rtfNavigator.CopyToWriter(this);
570 }
571 else if (navigator.NodeType == XPathNodeType.Root)
572 {
573 if (navigator.MoveToFirstChild())
574 {
575 do
576 {
578 }
579 while (navigator.MoveToNext());
580 navigator.MoveToParent();
581 }
582 }
583 else
584 {
586 }
587 }
void CopyNode(XPathNavigator navigator)

References System.Xml.Xsl.Runtime.XmlQueryOutput.CopyNode().