TypeDelegator::GetCustomAttributes Method (Type^, Boolean)

 

Returns an array of custom attributes identified by type.

Namespace:   System.Reflection
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
Return to top
Show: