DynamicMethod.IsDefined Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Indicates whether the specified custom attribute type is defined.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Overrides Function IsDefined ( _ attributeType As Type, _ inherit As Boolean _ ) As Boolean
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.Booleantrue if the specified custom attribute type is defined; otherwise, false.
Implements
ICustomAttributeProvider.IsDefined(Type, Boolean)
Show:
Note: