File: System\Xml\XPath\Internal\XPathSelfQuery.cs
Web Access
Project: src\src\libraries\System.Private.Xml\src\System.Private.Xml.csproj (System.Private.Xml)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Xml.XPath;
 
namespace MS.Internal.Xml.XPath
{
    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); }
    }
}