HtmlAgilityPack.HtmlNodeNavigator.MoveToNextAttribute C# (CSharp) Method

MoveToNextAttribute() public method

Moves to the next HTML attribute.
public MoveToNextAttribute ( ) : bool
return bool
        public override bool MoveToNextAttribute()
        {
            InternalTrace(null);
            if (_attindex >= (_currentnode.Attributes.Count - 1))
            {
                InternalTrace(">false");
                return false;
            }
            _attindex++;
            InternalTrace(">true");
            return true;
        }