DynamicMethod.GetCustomAttributes Method (Boolean)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns all the custom attributes defined for the method.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Overrides Function GetCustomAttributes ( _ inherit As Boolean _ ) As Object()
Parameters
- 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.Object ()An array of objects representing all the custom attributes of the method.
Implements
ICustomAttributeProvider.GetCustomAttributes(Boolean)For dynamic methods, specifying true for inherit has no effect, because the method is not declared in a type.
Note: |
|---|
Custom attributes are not currently supported on dynamic methods. The only attribute returned is MethodImplAttribute; you can get the method implementation flags more easily using the GetMethodImplementationFlags method. |
Note: