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

◆ Nodes()

IEnumerable< XNode > System.Xml.Linq.XContainer.Nodes ( )
inlineinherited

Definition at line 611 of file XContainer.cs.

612 {
613 XNode i = LastNode;
614 if (i != null)
615 {
616 do
617 {
618 i = i.next;
619 yield return i;
620 }
621 while (i.parent == this && i != content);
622 }
623 }

References System.Xml.Linq.XContainer.content, and System.Xml.Linq.XContainer.LastNode.

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