Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DocumentXPathNodeIterator_Empty.cs
Go to the documentation of this file.
2
3namespace System.Xml;
4
6{
7 private readonly XPathNavigator _nav;
8
9 public override XPathNavigator Current => _nav;
10
11 public override int CurrentPosition => 0;
12
13 public override int Count => 0;
14
19
24
25 public override XPathNodeIterator Clone()
26 {
27 return new DocumentXPathNodeIterator_Empty(this);
28 }
29
30 public override bool MoveNext()
31 {
32 return false;
33 }
34}
DocumentXPathNodeIterator_Empty(DocumentXPathNodeIterator_Empty other)