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

MoveToAttribute() public méthode

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