Partager via


Comment : accéder à des attributs XML (Visual Basic)

Cet exemple montre comment utiliser une propriété d’axe d’attribut pour accéder aux attributs XML d’un élément XML par nom. En particulier, il utilise la propriété type d’axe d’attribut pour accéder à l’attribut nommé type dans l’objet phone .

Exemple

Dim phone As XElement = <phone type="home">206-555-0144</phone>

Console.WriteLine("Type: " & phone.@type)

Voir aussi