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

◆ GetNextNode()

XmlNode System.Xml.XmlElementList.GetNextNode ( XmlNode n)
inline

Definition at line 210 of file XmlElementList.cs.

211 {
212 if (_empty)
213 {
214 return null;
215 }
216 XmlNode n2 = ((n == null) ? _rootNode : n);
217 return GetMatchingNode(n2, bNext: true);
218 }
XmlNode GetMatchingNode(XmlNode n, bool bNext)
readonly XmlNode _rootNode

References System.Xml.XmlElementList._empty, System.Xml.XmlElementList._rootNode, System.Xml.Dictionary, and System.Xml.XmlElementList.GetMatchingNode().

Referenced by System.Xml.XmlElementListEnumerator.MoveNext().