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

◆ MoveToNextNamespaceLocal()

static bool System.Xml.DocumentXPathNavigator.MoveToNextNamespaceLocal ( XmlAttributeCollection attributes,
ref int index )
inlinestaticprivate

Definition at line 597 of file DocumentXPathNavigator.cs.

598 {
599 for (int num = index - 1; num >= 0; num--)
600 {
601 XmlAttribute xmlAttribute = attributes[num];
602 if (xmlAttribute.IsNamespace)
603 {
604 index = num;
605 return true;
606 }
607 }
608 return false;
609 }

References System.index.

Referenced by System.Xml.DocumentXPathNavigator.MoveToNextNamespace(), and System.Xml.DocumentXPathNavigator.MoveToNextNamespaceGlobal().