ModuleBuilder.IsDefined(Type, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a value that indicates whether the specified attribute type has been applied to this module.
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 type of custom attribute to test for.
- inherit
- Boolean
This argument is ignored for objects of this type.
Returns
true
if one or more instances of attributeType
have been applied to this module; otherwise, false
.
Exceptions
attributeType
is null
.
attributeType
is not a Type object supplied by the runtime. For example, attributeType
is a TypeBuilder object.