Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DocumentOrderQuery.cs
Go to the documentation of this file.
2
4
5internal sealed class DocumentOrderQuery : CacheOutputQuery
6{
7 public DocumentOrderQuery(Query qyParent)
8 : base(qyParent)
9 {
10 }
11
13 : base(other)
14 {
15 }
16
17 public override object Evaluate(XPathNodeIterator context)
18 {
19 base.Evaluate(context);
21 while ((nav = input.Advance()) != null)
22 {
24 }
25 return this;
26 }
27
28 public override XPathNavigator MatchNode(XPathNavigator context)
29 {
30 return input.MatchNode(context);
31 }
32
33 public override XPathNodeIterator Clone()
34 {
35 return new DocumentOrderQuery(this);
36 }
37}
override XPathNavigator MatchNode(XPathNavigator context)
override object Evaluate(XPathNodeIterator context)
virtual XPathNavigator MatchNode(XPathNavigator current)
Definition Query.cs:60
XPathNavigator Advance()
static bool Insert(List< XPathNavigator > buffer, XPathNavigator nav)
Definition Query.cs:87