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

◆ GetAttribute() [1/2]

virtual string System.Xml.XmlElement.GetAttribute ( string localName,
string? namespaceURI )
inlinevirtual

Definition at line 347 of file XmlElement.cs.

348 {
349 XmlAttribute attributeNode = GetAttributeNode(localName, namespaceURI);
350 if (attributeNode != null)
351 {
352 return attributeNode.Value;
353 }
354 return string.Empty;
355 }
virtual ? XmlAttribute GetAttributeNode(string name)

References System.Xml.Dictionary, and System.Xml.XmlElement.GetAttributeNode().