System.Xml.XmlBaseReader.ReadAttributeValue C# (CSharp) Method

ReadAttributeValue() public method

public ReadAttributeValue ( ) : bool
return bool
        public override bool ReadAttributeValue()
        {
            XmlAttributeTextNode attributeTextNode = _node.AttributeText;
            if (attributeTextNode == null)
                return false;
            MoveToNode(attributeTextNode);
            return true;
        }