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

◆ GetAttribute() [2/2]

virtual string System.Xml.XmlElement.GetAttribute ( string name)
inlinevirtual

Definition at line 282 of file XmlElement.cs.

283 {
284 XmlAttribute attributeNode = GetAttributeNode(name);
285 if (attributeNode != null)
286 {
287 return attributeNode.Value;
288 }
289 return string.Empty;
290 }
virtual ? XmlAttribute GetAttributeNode(string name)

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

Referenced by System.Data.XDRSchema.FindTypeNode(), and System.Data.XMLSchema.GetBooleanAttribute().