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

◆ IsInheritedNamespace()

static bool System.Xml.Xsl.Runtime.XmlQueryRuntime.IsInheritedNamespace ( XPathNavigator node)
inlinestaticprivate

Definition at line 725 of file XmlQueryRuntime.cs.

726 {
728 if (xPathNavigator.MoveToParent() && xPathNavigator.MoveToFirstNamespace(XPathNamespaceScope.Local))
729 {
730 do
731 {
732 if ((object)xPathNavigator.LocalName == node.LocalName)
733 {
734 return false;
735 }
736 }
737 while (xPathNavigator.MoveToNextNamespace(XPathNamespaceScope.Local));
738 }
739 return true;
740 }

Referenced by System.Xml.Xsl.Runtime.XmlQueryRuntime.OnCurrentNodeChanged().