|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace MS.Internal.Xml.XPath
{
using System;
using Microsoft.Xml;
using Microsoft.Xml.XPath;
using System.Diagnostics;
internal sealed class XPathSelfQuery : BaseAxisQuery
{
public XPathSelfQuery(Query qyInput, string Name, string Prefix, XPathNodeType Type) : base(qyInput, Name, Prefix, Type) { }
private XPathSelfQuery(XPathSelfQuery other) : base(other) { }
public override XPathNavigator Advance()
{
while ((currentNode = qyInput.Advance()) != null)
{
if (matches(currentNode))
{
position = 1;
return currentNode;
}
}
return null;
}
public override XPathNodeIterator Clone() { return new XPathSelfQuery(this); }
}
}
|