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

◆ MoveToParent()

override bool System.Xml.XPath.XNodeNavigator.MoveToParent ( )
inline

Definition at line 577 of file XNodeNavigator.cs.

578 {
579 if (_parent != null)
580 {
582 _parent = null;
583 return true;
584 }
585 XNode parent = _source.GetParent();
586 if (parent != null)
587 {
588 _source = parent;
589 return true;
590 }
591 return false;
592 }

References System.Xml.XPath.XNodeNavigator._parent, and System.Xml.XPath.XNodeNavigator._source.