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

MoveToAttribute() public méthode

public MoveToAttribute ( string localName, string namespaceUri ) : bool
localName string
namespaceUri string
Résultat 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