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

MoveToAttribute() public method

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

Same methods

XmlBaseReader::MoveToAttribute ( string name ) : bool
XmlBaseReader::MoveToAttribute ( int index ) : void