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

◆ NextNode

XNode? System.Xml.Linq.XNode.NextNode
getinherited

Definition at line 18 of file XNode.cs.

19 {
20 get
21 {
22 if (parent != null && this != parent.content)
23 {
24 return next;
25 }
26 return null;
27 }
28 }
XContainer parent
Definition XObject.cs:7

Referenced by System.Xml.XPath.XNodeNavigator.MoveToNext(), and System.Xml.XPath.XNodeNavigator.MoveToNext().