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

◆ SelectSingleNode() [3/3]

virtual ? XPathNavigator System.Xml.XPath.XPathNavigator.SelectSingleNode ( XPathExpression expression)
inlinevirtualinherited

Definition at line 1289 of file XPathNavigator.cs.

1290 {
1291 XPathNodeIterator xPathNodeIterator = Select(expression);
1292 if (xPathNodeIterator.MoveNext())
1293 {
1294 return xPathNodeIterator.Current;
1295 }
1296 return null;
1297 }

References System.Select.