[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
When overridden in a derived class, returns an array of custom attributes applied to this member and identified by Type.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Parameters
- attributeType
- Type: System.Type
The type of attribute to search for. Only attributes that are assignable to this type are returned.
- inherit
- Type: System.Boolean
true to search this member's inheritance chain to find the attributes; otherwise, false. This parameter is ignored for properties and events; see Remarks.
Return Value
Type: System.Object()An array of custom attributes applied to this member, or an array with zero elements if no attributes assignable to attributeType have been applied.
Implements
ICustomAttributeProvider.GetCustomAttributes(Type, Boolean)_MemberInfo.GetCustomAttributes(Type, Boolean)
| Exception | Condition |
|---|---|
| TypeLoadException |
A custom attribute type cannot be loaded. |
| ArgumentNullException |
If attributeType is Nothing. |
| InvalidOperationException |
This member belongs to a type that is loaded into the reflection-only context. See How to: Load Assemblies into the Reflection-Only Context. |
This method ignores the inherit parameter for properties and events. To search the inheritance chain for attributes on properties and events, use the appropriate overloads of the Attribute.GetCustomAttributes method.
Note
|
|---|
|
In the .NET Framework version 2.0, this method returns security attributes on methods, constructors, and types if the attributes are stored in the new metadata format. Assemblies compiled with version 2.0 use this format. Dynamic assemblies and assemblies compiled with earlier versions of the .NET Framework use the old XML format. See Emitting Declarative Security Attributes. |
Windows 8 Release Preview, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 SP2, 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.

Note
