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

◆ NameMatch()

bool MS.Internal.Xml.Cache.XPathNode.NameMatch ( string localName,
string namespaceName )
inline

Definition at line 139 of file XPathNode.cs.

140 {
141 if ((object)_info.LocalName == localName)
142 {
143 return _info.NamespaceUri == namespaceName;
144 }
145 return false;
146 }
XPathNodeInfoAtom _info
Definition XPathNode.cs:7

References MS.Internal.Xml.Cache.XPathNode._info, and MS.Internal.Xml.Cache.XPathNodeInfoAtom.LocalName.