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

MoveToFollowingSibling() public method

Reposition the navigator on the next sibling (no attributes).
public MoveToFollowingSibling ( XPathNavigator navigator ) : bool
navigator System.Xml.XPath.XPathNavigator
return bool
        public override bool MoveToFollowingSibling(XPathNavigator navigator) {
            return navigator.MoveToNext();
        }