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

◆ MoveToNextAttribute()

override bool System.Xml.XPath.XNodeNavigator.MoveToNextAttribute ( )
inline

Definition at line 515 of file XNodeNavigator.cs.

516 {
517 if (_source is XAttribute xAttribute && _parent == null)
518 {
519 XElement xElement = (XElement)xAttribute.GetParent();
520 if (xElement != null)
521 {
523 {
524 if (!nextAttribute.IsNamespaceDeclaration)
525 {
527 return true;
528 }
529 }
530 }
531 }
532 return false;
533 }

References System.Xml.XPath.XNodeNavigator._parent, System.Xml.XPath.XNodeNavigator._source, System.Xml.Dictionary, and System.Xml.Linq.XAttribute.NextAttribute.