Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: IEnumerable<XAttribute> AttributesI(this XElement, string)

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 XElementelement XML element to search.
stringname The name to match.

Returns

The filtered collection of attributes..