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

◆ GetXPAttribute()

override string System.Xml.XmlElement.GetXPAttribute ( string localName,
string ns )
inlinepackagevirtual

Reimplemented from System.Xml.XmlNode.

Definition at line 537 of file XmlElement.cs.

538 {
540 {
541 return string.Empty;
542 }
543 XmlAttribute attributeNode = GetAttributeNode(localName, ns);
544 if (attributeNode != null)
545 {
546 return attributeNode.Value;
547 }
548 return string.Empty;
549 }
override XmlDocument OwnerDocument
Definition XmlElement.cs:49
virtual ? XmlAttribute GetAttributeNode(string name)

References System.Xml.Dictionary, System.Xml.XmlElement.GetAttributeNode(), System.Xml.XmlElement.OwnerDocument, and System.Xml.XmlDocument.strReservedXmlns.