System.Xml.XmlBaseReader.ReadAttributeValue C# (CSharp) Méthode

ReadAttributeValue() public méthode

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