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

◆ CreateAttribute()

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

Definition at line 1649 of file XPathNavigator.cs.

1650 {
1651 XmlWriter xmlWriter = CreateAttributes();
1652 xmlWriter.WriteStartAttribute(prefix, localName, namespaceURI);
1653 if (value != null)
1654 {
1655 xmlWriter.WriteString(value);
1656 }
1657 xmlWriter.WriteEndAttribute();
1658 xmlWriter.Close();
1659 }
virtual XmlWriter CreateAttributes()

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