コード例 #1
0
ファイル: XPathSequence.cs プロジェクト: nlhepler/mono
		private AxisIterator (AxisIterator other)
			: base (other)
		{
			iter = (NodeIterator) other.iter.Clone ();
			source = other.source;
		}
コード例 #2
0
ファイル: XPathSequence.cs プロジェクト: nlhepler/mono
		public AxisIterator (NodeIterator iter, AxisStepExpr source)
			: base (iter.Context)
		{
			this.iter = iter;
			this.source = source;
		}