Declaration
public static IEnumerable<XAttribute> AttributesI(
this XElement element,
string name
)Summary
Returns a filtered collection of attributes of this element. Only elements that have the specified local name
(ignoring the namespace) are included in the collection.
Parameters
| this XElement | element |
XML element to search. |
| string | name |
The name to match. |
Returns
The filtered collection of attributes..