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

◆ NextAttribute

XAttribute? System.Xml.Linq.XAttribute.NextAttribute
get

Definition at line 35 of file XAttribute.cs.

36 {
37 get
38 {
39 if (parent == null || ((XElement)parent).lastAttr == this)
40 {
41 return null;
42 }
43 return next;
44 }
45 }
XContainer parent
Definition XObject.cs:7

Referenced by System.Xml.XPath.XNodeNavigator.MoveToNextAttribute().