Attributes Method (XName)
Collapse the table of content
Expand the table of content

XElement.Attributes Method (XName)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Returns a filtered collection of attributes of this element. Only elements that have a matching XName are included in the collection.

Namespace:  System.Xml.Linq
Assembly:  System.Xml.Linq (in System.Xml.Linq.dll)

'Declaration
Public Function Attributes ( _
	name As XName _
) As IEnumerable(Of XAttribute)

Parameters

name
Type: System.Xml.Linq.XName
The XName to match.

Return Value

Type: System.Collections.Generic.IEnumerable(Of XAttribute)
An IEnumerable(Of T) of XAttribute that contains the attributes of this element. Only elements that have a matching XName are included in the collection.

Attribute names must be unique within an element. Therefore, this axis method can return either a collection that contains only one attribute, or it can return an empty collection.

This method uses deferred execution.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft