Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DynamicMethod::IsDefined Method (Type^, Boolean)

 

Indicates whether the specified custom attribute type is defined.

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

public:
virtual bool IsDefined(
	Type^ attributeType,
	bool inherit
) override

Parameters

attributeType
Type: System::Type^

A Type representing the type of custom attribute to search for.

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::Boolean

true if the specified custom attribute type is defined; otherwise, false.

For dynamic methods, specifying true for inherit has no effect. Dynamic methods have no inheritance chain.

System_CAPS_noteNote

Custom attributes are not currently supported on dynamic methods.

.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Return to top
Show:
© 2017 Microsoft