MemberInfo::GetCustomAttributes Method (Type, Boolean)
Updated: January 2010
When overridden in a derived class, returns an array of custom attributes applied to this member and identified by Type.
Assembly: mscorlib (in mscorlib.dll)
public: virtual array<Object^>^ GetCustomAttributes( Type^ attributeType, bool inherit ) abstract
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: array<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 could not be loaded. |
| ArgumentNullException | If attributeType is nullptr. |
| 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 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: