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

◆ InsertBefore() [4/4]

virtual void System.Xml.XPath.XPathNavigator.InsertBefore ( XPathNavigator newSibling)
inlinevirtualinherited

Definition at line 1546 of file XPathNavigator.cs.

1547 {
1548 if (newSibling == null)
1549 {
1550 throw new ArgumentNullException("newSibling");
1551 }
1552 if (!IsValidSiblingType(newSibling.NodeType))
1553 {
1555 }
1556 XmlReader newSibling2 = newSibling.CreateReader();
1558 }
static string Xpn_BadPosition
Definition SR.cs:1316
Definition SR.cs:7
bool IsValidSiblingType(XPathNodeType type)

References System.Xml.XPath.XPathNavigator.InsertBefore(), System.Xml.XPath.XPathNavigator.IsValidSiblingType(), and System.SR.Xpn_BadPosition.