DynamicMethod.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.
Indicates whether 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
- inherit
- Boolean
true
to search the method's inheritance chain to find the custom attributes; false
to check only the current method.
Returns
true
if the specified custom attribute type is defined; otherwise, false
.
Remarks
For dynamic methods, specifying true
for inherit
has no effect. Dynamic methods have no inheritance chain.
Note
Custom attributes are not currently supported on dynamic methods.