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

MoveToPreviousSibling() public abstract method

Reposition the navigator to the previous sibling node (no attributes); skip over filtered nodes. If there are no matching nodes, then don't move navigator and return false.
public abstract MoveToPreviousSibling ( XPathNavigator navigator ) : bool
navigator System.Xml.XPath.XPathNavigator
return bool
        public abstract bool MoveToPreviousSibling(XPathNavigator navigator);

Usage Example

Exemplo n.º 1
0
 public bool MoveNext()
 {
     return(_filter.MoveToPreviousSibling(_navCurrent));
 }