DynamicMethod.GetCustomAttributes Method (Boolean)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Returns all the custom attributes defined for the method.
Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Overrides Function GetCustomAttributes ( _
inherit As Boolean _
) As Object()
public override Object[] GetCustomAttributes(
bool inherit
)
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: array<System.Object[]
An array of objects representing all the custom attributes of the method.
Implements
Remarks
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. |
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.