Como: Accessar atributos XML (Visual Basic)

This example shows how to use an attribute axis property to access XML attributes in an XML element by name. In particular, it uses the type attribute axis property to access the attribute named type in the phone object.

Exemplo

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

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

Consulte também

Referência

Propriedade de eixo de atributo XML (Visual Basic)

XElement.Attributes

Outros recursos

Acessando XML no Visual Basic

XML no Visual Basic