System.Xml.XmlBaseReader.ReadAttributeValue C# (CSharp) 메소드

ReadAttributeValue() 공개 메소드

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