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

MoveToPreviousSibling() public method

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