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

MoveToFollowingSibling() public method

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