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

◆ InsertElementAfter()

virtual void System.Xml.XPath.XPathNavigator.InsertElementAfter ( string prefix,
string localName,
string namespaceURI,
string value )
inlinevirtualinherited

Definition at line 1637 of file XPathNavigator.cs.

1638 {
1639 XmlWriter xmlWriter = InsertAfter();
1640 xmlWriter.WriteStartElement(prefix, localName, namespaceURI);
1641 if (value != null)
1642 {
1643 xmlWriter.WriteString(value);
1644 }
1645 xmlWriter.WriteEndElement();
1646 xmlWriter.Close();
1647 }

References System.Xml.XPath.XPathNavigator.InsertAfter(), System.prefix, and System.value.