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

◆ RemoveAttributeNode() [1/2]

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

Definition at line 399 of file XmlElement.cs.

400 {
401 if (HasAttributes)
402 {
403 XmlAttribute attributeNode = GetAttributeNode(localName, namespaceURI);
405 return attributeNode;
406 }
407 return null;
408 }
XmlAttribute? Remove(XmlAttribute? node)
override XmlAttributeCollection Attributes
Definition XmlElement.cs:93
virtual ? XmlAttribute GetAttributeNode(string name)
virtual bool HasAttributes

References System.Xml.XmlElement.Attributes, System.Xml.Dictionary, System.Xml.XmlElement.GetAttributeNode(), System.Xml.XmlElement.HasAttributes, and System.Xml.XmlAttributeCollection.Remove().