MethodBuilder.IsDefined(Type, Boolean) Method

Definition

Checks if the specified custom attribute type is defined.

public:
 override bool IsDefined(Type ^ attributeType, bool inherit);
public override bool IsDefined (Type attributeType, bool inherit);
override this.IsDefined : Type * bool -> bool
Public Overrides Function IsDefined (attributeType As Type, inherit As Boolean) As Boolean

Parameters

attributeType
Type

The custom attribute type.

inherit
Boolean

Specifies whether to search this member's inheritance chain to find the custom attributes.

Returns

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

Exceptions

This method is not currently supported. Retrieve the method using GetMethod(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[]) and call IsDefined(Type, Boolean) on the returned MethodInfo.

Applies to