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

◆ SelectNodes() [1/2]

XmlNodeList? System.Xml.XmlNode.SelectNodes ( string xpath)
inlineinherited

Definition at line 399 of file XmlNode.cs.

400 {
402 if (xPathNavigator == null)
403 {
404 return null;
405 }
406 return new XPathNodeList(xPathNavigator.Select(xpath));
407 }
virtual ? XPathNavigator CreateNavigator()
Definition XmlNode.cs:363

References System.Xml.XmlNode.CreateNavigator(), and System.Xml.Dictionary.