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

◆ InsertAfter() [4/4]

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

Definition at line 1577 of file XPathNavigator.cs.

1578 {
1579 if (newSibling == null)
1580 {
1581 throw new ArgumentNullException("newSibling");
1582 }
1583 if (!IsValidSiblingType(newSibling.NodeType))
1584 {
1586 }
1587 XmlReader newSibling2 = newSibling.CreateReader();
1589 }
static string Xpn_BadPosition
Definition SR.cs:1316
Definition SR.cs:7
bool IsValidSiblingType(XPathNodeType type)

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