This topic has not yet been rated - Rate this topic

DynamicMethod.GetCustomAttributes Method (Type, Boolean)

Returns the custom attributes of the specified type that have been applied to the method.

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)
public override Object[] GetCustomAttributes(
	Type attributeType,
	bool inherit
)

Parameters

attributeType
Type: System.Type
A Type representing the type of custom attribute to return.
inherit
Type: System.Boolean
true to search the method's inheritance chain to find the custom attributes; false to check only the current method.

Return Value

Type: System.Object[]
An array of objects representing the attributes of the method that are of type attributeType or derive from type attributeType.

Implements

ICustomAttributeProvider.GetCustomAttributes(Type, Boolean)
ExceptionCondition
ArgumentNullException

attributeType is null.

For dynamic methods, specifying true for inherit has no effect, because the method is not declared in a type.

NoteNote:

Custom attributes are not currently supported on dynamic methods. The only attribute returned is MethodImplAttribute; you can get the method implementation flags more easily using the GetMethodImplementationFlags method.

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1

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

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.