CustomAttributeExtensions.GetCustomAttributes Method (MemberInfo, Boolean)
Retrieves a collection of custom attributes that are applied to a specified member, and optionally inspects the ancestors of that member.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
public static IEnumerable<Attribute> GetCustomAttributes( this MemberInfo element, bool inherit )
Parameters
- element
- Type: System.Reflection.MemberInfo
The member to inspect.
- inherit
- Type: System.Boolean
true to inspect the ancestors of element; otherwise, false.
Return Value
Type: System.Collections.Generic.IEnumerable<Attribute>A collection of the custom attributes that are applied to element that match the specified criteria, or an empty collection if no such attributes exist.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type MemberInfo. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).| Exception | Condition |
|---|---|
| ArgumentNullException | element is null. |
| NotSupportedException | element is not a constructor, method, property, event, type, or field. |
| TypeLoadException | A custom attribute type cannot be loaded. |
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.