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

MoveToNextContent() public method

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