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

MoveToAttribute() public method

public MoveToAttribute ( string name ) : bool
name string
return bool
        public override bool MoveToAttribute(string name)
        {
            XmlNode attributeNode = GetAttributeNode(name);
            if (attributeNode == null)
                return false;
            MoveToNode(attributeNode);
            return true;
        }

Same methods

XmlBaseReader::MoveToAttribute ( string localName, string namespaceUri ) : bool
XmlBaseReader::MoveToAttribute ( int index ) : void