System.Xml.XmlTextReaderImpl.MoveToNextAttribute C# (CSharp) Method

MoveToNextAttribute() public method

public MoveToNextAttribute ( ) : bool
return bool
        public override bool MoveToNextAttribute()
        {
            if (_curAttrIndex + 1 < _attrCount)
            {
                if (InAttributeValueIterator)
                {
                    FinishAttributeValueIterator();
                }
                _curNode = _nodes[_index + 1 + ++_curAttrIndex];
                return true;
            }
            return false;
        }

Usage Example

示例#1
0
 public override bool MoveToNextAttribute()
 {
     return(_impl.MoveToNextAttribute());
 }
XmlTextReaderImpl