ConstructorBuilder::IsDefined Method (Type^, Boolean)

 

Checks if 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 custom attribute type.

inherit
Type: System::Boolean

Controls inheritance of custom attributes from base classes. This parameter is ignored.

Return Value

Type: System::Boolean

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

Exception Condition
NotSupportedException

This method is not currently supported. You can retrieve the constructor using GetConstructor and call IsDefined on the returned ConstructorInfo.

See the metadata specification for details on how to format binaryAttribute.

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Return to top
Show: