HtmlAgilityPack.HtmlNodeNavigator.MoveToNextAttribute C# (CSharp) Метод

MoveToNextAttribute() публичный Метод

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