Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XPathPrecedingDocOrderIterator.cs
Go to the documentation of this file.
3
5
8{
10
12
14
16
23
24 public bool MoveNext()
25 {
26 if (!_navStack.IsEmpty)
27 {
28 do
29 {
31 {
32 return true;
33 }
35 }
36 while (!_navStack.IsEmpty);
37 }
38 return false;
39 }
40
41 private void PushAncestors()
42 {
44 do
45 {
47 }
48 while (_navCurrent.MoveToParent());
49 _navStack.Pop();
50 }
51}
bool MoveTo(XPathNavigator other)
bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navigatorEnd)
static XPathNavigator SyncToNavigator(XPathNavigator navigatorThis, XPathNavigator navigatorThat)
void Create(XPathNavigator input, XmlNavigatorFilter filter)