MemberInfo::GetCustomAttributes Method (Boolean)

When overridden in a derived class, returns an array of all custom attributes applied to this member.

Namespace:  System.Reflection
Assembly:  mscorlib (in mscorlib.dll)

No code example is currently available or this language may not be supported.

Parameters

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 that contains all the custom attributes applied to this member, or an array with zero elements if no attributes are defined.

Implements

ICustomAttributeProvider::GetCustomAttributes(Boolean)

ExceptionCondition
TypeLoadException

A custom attribute type could not be loaded.

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 Silverlight for Windows Phone

 Some attribute constructor arguments and property values can cause MemberInfo::GetCustomAttributes to fail.

The following example defines a custom attribute and associates the attribute with MyClass.MyMethod, retrieves the attribute at run time, and displays the result.

No code example is currently available or this language may not be supported.

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Community Additions

ADD
Show: