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

MoveToContent() public method

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