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

◆ RemoveAttributesSkipNotify()

void System.Xml.Linq.XElement.RemoveAttributesSkipNotify ( )
inlineprivate

Definition at line 1231 of file XElement.cs.

1232 {
1233 if (lastAttr != null)
1234 {
1235 XAttribute xAttribute = lastAttr;
1236 do
1237 {
1238 XAttribute xAttribute2 = xAttribute.next;
1239 xAttribute.parent = null;
1240 xAttribute.next = null;
1242 }
1243 while (xAttribute != lastAttr);
1244 lastAttr = null;
1245 }
1246 }

References System.Xml.Dictionary, and System.Xml.Linq.XElement.lastAttr.

Referenced by System.Xml.Linq.XElement.RemoveAttributes().