如何:访问 XML 特性 (Visual Basic)

此示例演示如何使用特性轴属性按名称访问 XML 元素中的 XML 特性。 具体而言,它使用 type 特性轴属性来访问 phone 对象中名为 type 的特性。

示例

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

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

请参见

参考

XML 特性轴属性 (Visual Basic)

XElement.Attributes

其他资源

在 Visual Basic 中访问 XML

Visual Basic 中的 XML