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

◆ AppendChild() [4/4]

virtual void System.Xml.XPath.XPathNavigator.AppendChild ( XPathNavigator newChild)
inlinevirtualinherited

Definition at line 1484 of file XPathNavigator.cs.

1485 {
1486 if (newChild == null)
1487 {
1488 throw new ArgumentNullException("newChild");
1489 }
1490 if (!IsValidChildType(newChild.NodeType))
1491 {
1493 }
1494 XmlReader newChild2 = newChild.CreateReader();
1496 }
static string Xpn_BadPosition
Definition SR.cs:1316
Definition SR.cs:7
bool IsValidChildType(XPathNodeType type)

References System.Xml.XPath.XPathNavigator.AppendChild(), System.Xml.XPath.XPathNavigator.IsValidChildType(), and System.SR.Xpn_BadPosition.