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

◆ RemoveChild()

override XmlNode System.Xml.XmlAttribute.RemoveChild ( XmlNode oldChild)
inlinevirtual

Reimplemented from System.Xml.XmlNode.

Reimplemented in System.Xml.XmlUnspecifiedAttribute.

Definition at line 314 of file XmlAttribute.cs.

315 {
316 XmlNode result;
318 {
319 string innerText = InnerText;
320 result = base.RemoveChild(oldChild);
322 }
323 else
324 {
325 result = base.RemoveChild(oldChild);
326 }
327 return result;
328 }
void ResetOwnerElementInElementIdAttrMap(string oldInnerText)
bool PrepareOwnerElementInElementIdAttrMap()
override string InnerText

References System.Xml.Dictionary, System.Xml.XmlAttribute.InnerText, System.Xml.XmlAttribute.PrepareOwnerElementInElementIdAttrMap(), System.Xml.XmlNode.RemoveChild(), and System.Xml.XmlAttribute.ResetOwnerElementInElementIdAttrMap().