terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ PushAncestors()

void System.Xml.Linq.ElementWriter.PushAncestors ( XElement e)
inlineprivate

Definition at line 37 of file ElementWriter.cs.

38 {
39 if (e.parent == null)
40 {
41 return;
42 }
43 XAttribute lastAttr = e.lastAttr;
44 while (lastAttr == null)
45 {
46 }
47 XAttribute next = lastAttr.next;
48 bool isNamespaceDeclaration = next.IsNamespaceDeclaration;
49 if (next.name._ns._namespaceName._stringLength != 0)
50 {
51 return;
52 }
53 XNamespace xnamespace = XNamespace.Get(next.value);
54 XAttribute lastAttr2 = e.lastAttr;
55 }
class f__AnonymousType0<< Count > j__TPar

References System.Xml.Linq.XNamespace._namespaceName, System.Xml.Linq.XName._ns, System.Xml.Linq.XNamespace.Get(), System.Xml.Linq.XAttribute.IsNamespaceDeclaration, j__TPar, System.Xml.Linq.XElement.lastAttr, System.Xml.Linq.XAttribute.name, System.Xml.Linq.XAttribute.next, System.Xml.Linq.XObject.parent, and System.Xml.Linq.XAttribute.value.

Referenced by System.Xml.Linq.ElementWriter.WriteElement().