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

◆ MoveToAttribute()

override bool MS.Internal.Xml.Cache.XPathDocumentNavigator.MoveToAttribute ( string localName,
string namespaceURI )
inlinevirtual

Reimplemented from System.Xml.XPath.XPathNavigator.

Definition at line 208 of file XPathDocumentNavigator.cs.

209 {
210 XPathNode[] pageCurrent = _pageCurrent;
212 if ((object)localName != _atomizedLocalName)
213 {
214 _atomizedLocalName = ((localName != null) ? NameTable.Get(localName) : null);
215 }
216 if (XPathNodeHelper.GetAttribute(ref _pageCurrent, ref _idxCurrent, _atomizedLocalName, namespaceURI))
217 {
220 return true;
221 }
222 return false;
223 }
override? string Get(string value)
Definition NameTable.cs:79

References MS.Internal.Xml.Cache.XPathDocumentNavigator._atomizedLocalName, MS.Internal.Xml.Cache.XPathDocumentNavigator._idxCurrent, MS.Internal.Xml.Cache.XPathDocumentNavigator._idxParent, MS.Internal.Xml.Cache.XPathDocumentNavigator._pageCurrent, MS.Internal.Xml.Cache.XPathDocumentNavigator._pageParent, System.Xml.Dictionary, System.Xml.NameTable.Get(), and MS.Internal.Xml.Cache.XPathNodeHelper.GetAttribute().