MemberInfo::GetCustomAttributes Method (Type, Boolean)
Silverlight
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: 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)| Exception | Condition |
|---|---|
| TypeLoadException | A custom attribute type could not be loaded. |
| ArgumentNullException | attributeType is nullptr. |
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.
Platform Notes
Silverlight for Windows Phone
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Community Additions
ADD
Show: