Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DocumentXPathNodeIterator_ElemChildren_NoLocalName.cs
Go to the documentation of this file.
1
using
System.Xml.XPath
;
2
3
namespace
System.Xml
;
4
5
internal
class
DocumentXPathNodeIterator_ElemChildren_NoLocalName
:
DocumentXPathNodeIterator_ElemDescendants
6
{
7
private
readonly
string
_nsAtom
;
8
9
internal
DocumentXPathNodeIterator_ElemChildren_NoLocalName
(
DocumentXPathNavigator
nav,
string
nsAtom)
10
:
base
(nav)
11
{
12
_nsAtom
= nsAtom;
13
}
14
15
internal
DocumentXPathNodeIterator_ElemChildren_NoLocalName
(
DocumentXPathNodeIterator_ElemChildren_NoLocalName
other
)
16
:
base
(
other
)
17
{
18
_nsAtom
=
other
._nsAtom;
19
}
20
21
public
override
XPathNodeIterator
Clone
()
22
{
23
return
new
DocumentXPathNodeIterator_ElemChildren_NoLocalName
(
this
);
24
}
25
26
protected
override
bool
Match
(
XmlNode
node
)
27
{
28
return
Ref
.
Equal
(
node
.NamespaceURI,
_nsAtom
);
29
}
30
}
System.Xml.DocumentXPathNavigator
Definition
DocumentXPathNavigator.cs:10
System.Xml.DocumentXPathNodeIterator_ElemChildren_NoLocalName.Match
override bool Match(XmlNode node)
Definition
DocumentXPathNodeIterator_ElemChildren_NoLocalName.cs:26
System.Xml.DocumentXPathNodeIterator_ElemChildren_NoLocalName.Clone
override XPathNodeIterator Clone()
Definition
DocumentXPathNodeIterator_ElemChildren_NoLocalName.cs:21
System.Xml.DocumentXPathNodeIterator_ElemChildren_NoLocalName.DocumentXPathNodeIterator_ElemChildren_NoLocalName
DocumentXPathNodeIterator_ElemChildren_NoLocalName(DocumentXPathNavigator nav, string nsAtom)
Definition
DocumentXPathNodeIterator_ElemChildren_NoLocalName.cs:9
System.Xml.DocumentXPathNodeIterator_ElemChildren_NoLocalName.DocumentXPathNodeIterator_ElemChildren_NoLocalName
DocumentXPathNodeIterator_ElemChildren_NoLocalName(DocumentXPathNodeIterator_ElemChildren_NoLocalName other)
Definition
DocumentXPathNodeIterator_ElemChildren_NoLocalName.cs:15
System.Xml.DocumentXPathNodeIterator_ElemChildren_NoLocalName._nsAtom
readonly string _nsAtom
Definition
DocumentXPathNodeIterator_ElemChildren_NoLocalName.cs:7
System.Xml.DocumentXPathNodeIterator_ElemChildren_NoLocalName
Definition
DocumentXPathNodeIterator_ElemChildren_NoLocalName.cs:6
System.Xml.DocumentXPathNodeIterator_ElemDescendants
Definition
DocumentXPathNodeIterator_ElemDescendants.cs:6
System.Xml.Ref.Equal
static bool Equal(string strA, string strB)
Definition
Ref.cs:5
System.Xml.Ref
Definition
Ref.cs:4
System.Xml.XPath.XPathNodeIterator
Definition
XPathNodeIterator.cs:8
System.Xml.XmlNode
Definition
XmlNode.cs:13
System.Xml.XPath
Definition
Extensions.cs:5
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System.Xml
Definition
BaseRegionIterator.cs:1
System.ExceptionArgument.other
@ other
source
System.Private.Xml
System.Xml
DocumentXPathNodeIterator_ElemChildren_NoLocalName.cs
Generated by
1.10.0