TypeDelegator::GetCustomAttributes Method (Type^, Boolean)
.NET Framework (current version)
Returns an array of custom attributes identified by type.
Assembly: mscorlib (in mscorlib.dll)
public: virtual array<Object^>^ GetCustomAttributes( Type^ attributeType, bool inherit ) override
Parameters
- attributeType
-
Type:
System::Type^
An array of custom attributes identified by type.
- inherit
-
Type:
System::Boolean
Specifies whether to search this type's inheritance chain to find the attributes.
Return Value
Type: array<System::Object^>^An array of objects containing the custom attributes defined in this type that match the attributeType parameter, specifying whether to search the type's inheritance chain, or null if no custom attributes are defined on this type.
| Exception | Condition |
|---|---|
| ArgumentException | attributeType is null. |
| TypeLoadException | A custom attribute type cannot be loaded. |
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: