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

◆ HasAttributes

override bool System.Xml.XPath.XNodeNavigator.HasAttributes
get

Definition at line 38 of file XNodeNavigator.cs.

39 {
40 get
41 {
43 {
44 foreach (XAttribute item in xElement.Attributes())
45 {
46 if (!item.IsNamespaceDeclaration)
47 {
48 return true;
49 }
50 }
51 }
52 return false;
53 }
54 }