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

◆ IsElementMatch()

bool MS.Internal.Xml.Cache.XPathDocumentNavigator.IsElementMatch ( string localName,
string namespaceURI )
inline

Definition at line 622 of file XPathDocumentNavigator.cs.

623 {
624 if ((object)localName != _atomizedLocalName)
625 {
626 _atomizedLocalName = ((localName != null) ? NameTable.Get(localName) : null);
627 }
628 if (_idxParent != 0)
629 {
630 return false;
631 }
633 }
override? string Get(string value)
Definition NameTable.cs:79
bool ElementMatch(string localName, string namespaceName)
Definition XPathNode.cs:148

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, System.Xml.Dictionary, MS.Internal.Xml.Cache.XPathNode.ElementMatch(), and System.Xml.NameTable.Get().

Referenced by MS.Internal.Xml.Cache.XPathDocumentElementDescendantIterator.MoveNext().