Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DocumentXPathNodeIterator_ElemChildren.cs
Go to the documentation of this file.
2
3namespace System.Xml;
4
6{
7 protected string localNameAtom;
8
9 protected string nsAtom;
10
17
24
25 public override XPathNodeIterator Clone()
26 {
28 }
29
30 protected override bool Match(XmlNode node)
31 {
32 if (Ref.Equal(node.LocalName, localNameAtom))
33 {
34 return Ref.Equal(node.NamespaceURI, nsAtom);
35 }
36 return false;
37 }
38}
DocumentXPathNodeIterator_ElemChildren(DocumentXPathNodeIterator_ElemChildren other)
DocumentXPathNodeIterator_ElemChildren(DocumentXPathNavigator nav, string localNameAtom, string nsAtom)
static bool Equal(string strA, string strB)
Definition Ref.cs:5