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

◆ InsertBefore() [2/2]

override? XmlNode System.Xml.XmlAttribute.InsertBefore ( XmlNode newChild,
XmlNode? refChild )
inlinevirtualinherited

Reimplemented from System.Xml.XmlNode.

Definition at line 266 of file XmlAttribute.cs.

267 {
268 XmlNode result;
270 {
271 string innerText = InnerText;
272 result = base.InsertBefore(newChild, refChild);
274 }
275 else
276 {
277 result = base.InsertBefore(newChild, refChild);
278 }
279 return result;
280 }
void ResetOwnerElementInElementIdAttrMap(string oldInnerText)
bool PrepareOwnerElementInElementIdAttrMap()
override string InnerText

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