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

◆ PrependChild() [4/4]

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

Definition at line 1515 of file XPathNavigator.cs.

1516 {
1517 if (newChild == null)
1518 {
1519 throw new ArgumentNullException("newChild");
1520 }
1521 if (!IsValidChildType(newChild.NodeType))
1522 {
1524 }
1525 XmlReader newChild2 = newChild.CreateReader();
1527 }
static string Xpn_BadPosition
Definition SR.cs:1316
Definition SR.cs:7
bool IsValidChildType(XPathNodeType type)

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