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

◆ Document

XDocument? System.Xml.Linq.XObject.Document
getinherited

Definition at line 38 of file XObject.cs.

39 {
40 get
41 {
42 XObject xObject = this;
43 while (xObject.parent != null)
44 {
45 xObject = xObject.parent;
46 }
47 return xObject as XDocument;
48 }
49 }

Referenced by System.Xml.XPath.XObjectExtensions.GetParent().