Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XPathEmptyIterator.cs
Go to the documentation of this file.
1
using
System.Xml.XPath
;
2
3
namespace
MS.Internal.Xml.XPath
;
4
5
internal
sealed
class
XPathEmptyIterator
:
ResetableIterator
6
{
7
public
static
XPathEmptyIterator
Instance
=
new
XPathEmptyIterator
();
8
9
public
override
XPathNavigator
Current
=>
null
;
10
11
public
override
int
CurrentPosition
=> 0;
12
13
public
override
int
Count
=> 0;
14
15
private
XPathEmptyIterator
()
16
{
17
}
18
19
public
override
XPathNodeIterator
Clone
()
20
{
21
return
this
;
22
}
23
24
public
override
bool
MoveNext
()
25
{
26
return
false
;
27
}
28
29
public
override
void
Reset
()
30
{
31
}
32
}
MS.Internal.Xml.XPath.ResetableIterator
Definition
ResetableIterator.cs:6
MS.Internal.Xml.XPath.XPathEmptyIterator.Count
override int Count
Definition
XPathEmptyIterator.cs:13
MS.Internal.Xml.XPath.XPathEmptyIterator.CurrentPosition
override int CurrentPosition
Definition
XPathEmptyIterator.cs:11
MS.Internal.Xml.XPath.XPathEmptyIterator.Instance
static XPathEmptyIterator Instance
Definition
XPathEmptyIterator.cs:7
MS.Internal.Xml.XPath.XPathEmptyIterator.Reset
override void Reset()
Definition
XPathEmptyIterator.cs:29
MS.Internal.Xml.XPath.XPathEmptyIterator.Clone
override XPathNodeIterator Clone()
Definition
XPathEmptyIterator.cs:19
MS.Internal.Xml.XPath.XPathEmptyIterator.XPathEmptyIterator
XPathEmptyIterator()
Definition
XPathEmptyIterator.cs:15
MS.Internal.Xml.XPath.XPathEmptyIterator.Current
override XPathNavigator Current
Definition
XPathEmptyIterator.cs:9
MS.Internal.Xml.XPath.XPathEmptyIterator.MoveNext
override bool MoveNext()
Definition
XPathEmptyIterator.cs:24
MS.Internal.Xml.XPath.XPathEmptyIterator
Definition
XPathEmptyIterator.cs:6
System.Xml.XPath.XPathNavigator
Definition
XPathNavigator.cs:15
System.Xml.XPath.XPathNodeIterator
Definition
XPathNodeIterator.cs:8
MS.Internal.Xml.XPath
Definition
AbsoluteQuery.cs:3
System.Xml.XPath
Definition
Extensions.cs:5
source
System.Private.Xml
MS.Internal.Xml.XPath
XPathEmptyIterator.cs
Generated by
1.10.0