コード例 #1
0
ファイル: BaseAxisQuery.cs プロジェクト: yang73137/corefx
 public override void Reset()
 {
     position    = 0;
     currentNode = null; // After this current will not point to context node from Evaluate() call
                         // But this is ok, because there is no public Reset() on XPathNodeIterator
     qyInput.Reset();
 }
コード例 #2
0
ファイル: UnionExpr.cs プロジェクト: rsumner31/corefx2
 public override void Reset()
 {
     qy1.Reset();
     qy2.Reset();
     _advance1 = true;
     _advance2 = true;
     _nextNode = null;
 }
コード例 #3
0
ファイル: FilterQuery.cs プロジェクト: Potapy4/dotnet-wcf
 public override void Reset()
 {
     _cond.Reset();
     base.Reset();
 }
コード例 #4
0
 public override void Reset()
 {
     _query.Reset();
 }
コード例 #5
0
 public void Reset()
 {
     _opnd.Reset();
 }