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

GetAttribute() public méthode

public GetAttribute ( string name ) : string
name string
Résultat string
        public override string GetAttribute(string name)
        {
            XmlAttributeNode attributeNode = GetAttributeNode(name);
            if (attributeNode == null)
                return null;
            return attributeNode.ValueAsString;
        }

Same methods

XmlBaseReader::GetAttribute ( XmlDictionaryString localName, XmlDictionaryString namespaceUri ) : string
XmlBaseReader::GetAttribute ( int index ) : string
XmlBaseReader::GetAttribute ( string localName, string namespaceUri ) : string