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

◆ TextStart()

XmlNode System.Xml.DocumentXPathNavigator.TextStart ( XmlNode node)
inlineprivate

Definition at line 1926 of file DocumentXPathNavigator.cs.

1927 {
1928 XmlNode xmlNode = node;
1929 XmlNode result;
1930 do
1931 {
1932 result = xmlNode;
1934 }
1935 while (xmlNode != null && xmlNode.IsText);
1936 return result;
1937 }

References System.Xml.Dictionary, and System.Xml.DocumentXPathNavigator.PreviousSibling().

Referenced by System.Xml.DocumentXPathNavigator.MoveToPrevious().