HtmlAgilityPack.HtmlNodeNavigator.MoveToFirstChild C# (CSharp) Method

MoveToFirstChild() public method

Moves to the first child of the current node.
public MoveToFirstChild ( ) : bool
return bool
        public override bool MoveToFirstChild()
        {
            if (!_currentnode.HasChildNodes)
            {
                InternalTrace(">false");
                return false;
            }
            _currentnode = _currentnode.ChildNodes[0];
            InternalTrace(">true");
            return true;
        }