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

◆ XmlLang

virtual string System.Xml.XPath.XPathNavigator.XmlLang
getinherited

Definition at line 402 of file XPathNavigator.cs.

403 {
404 get
405 {
406 XPathNavigator xPathNavigator = Clone();
407 do
408 {
409 if (xPathNavigator.MoveToAttribute("lang", "http://www.w3.org/XML/1998/namespace"))
410 {
411 return xPathNavigator.Value;
412 }
413 }
414 while (xPathNavigator.MoveToParent());
415 return string.Empty;
416 }
417 }

Referenced by System.Xml.Xsl.Runtime.XsltFunctions.Lang(), and MS.Internal.Xml.XPath.BooleanFunctions.Lang().