HtmlAgilityPack.HtmlNodeNavigator.MoveToPrevious C# (CSharp) Method

MoveToPrevious() public method

Moves to the previous sibling of the current node.
public MoveToPrevious ( ) : bool
return bool
        public override bool MoveToPrevious()
        {
            if (_currentnode.PreviousSibling == null)
            {
                InternalTrace(">false");
                return false;
            }
            _currentnode = _currentnode.PreviousSibling;
            InternalTrace(">true");
            return true;
        }