System.Xml.XPath.XPathNavigatorReader.ReadAttributeValue C# (CSharp) Метод

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

public ReadAttributeValue ( ) : bool
Результат bool
        public override bool ReadAttributeValue() {
            if ( state == State.InReadBinary ) {
                readBinaryHelper.Finish();
                state = savedState;
            }
            if ( this.state == State.Attribute ) {
                this.state = State.AttrVal;
                this.nodeType = XmlNodeType.Text;
                this.depth++;
                return true;
            }
            return false;
        }