System.Xml.Xsl.Runtime.XmlNavNameFilter.MoveToFollowing C# (CSharp) Method

MoveToFollowing() public method

Reposition the navigator on the next following element with a matching name.
public MoveToFollowing ( XPathNavigator navigator, XPathNavigator navEnd ) : bool
navigator System.Xml.XPath.XPathNavigator
navEnd System.Xml.XPath.XPathNavigator
return bool
        public override bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navEnd) {
            return navigator.MoveToFollowing(this.localName, this.namespaceUri, navEnd);
        }