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

◆ GetFirstNamespaceDeclarationLocal()

static XAttribute System.Xml.XPath.XNodeNavigator.GetFirstNamespaceDeclarationLocal ( XElement e)
inlinestaticprivate

Definition at line 707 of file XNodeNavigator.cs.

708 {
709 foreach (XAttribute item in e.Attributes())
710 {
711 if (item.IsNamespaceDeclaration)
712 {
713 return item;
714 }
715 }
716 return null;
717 }
IEnumerable< XAttribute > Attributes()
Definition XElement.cs:236

References System.item.

Referenced by System.Xml.XPath.XNodeNavigator.GetFirstNamespaceDeclarationGlobal(), and System.Xml.XPath.XNodeNavigator.MoveToFirstNamespace().