Attributes Property

DynamicMethod.Attributes Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets the attributes specified when the dynamic method was created.

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

'Declaration
Public Overrides ReadOnly Property Attributes As MethodAttributes

Property Value

Type: System.Reflection.MethodAttributes
A bitwise combination of the MethodAttributes values representing the attributes for the method.

Currently, the method attributes for a dynamic method are always Public and Static.

The following code example displays the method attributes of a dynamic method. This code example is part of a larger example provided for the DynamicMethod class.


' Display MethodAttributes for the dynamic method, set when 
' the dynamic method was created.
outputBlock.Text &= String.Format("Method Attributes: {0}", _
    hello.Attributes) & vbLf


Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Windows Phone

Show:
© 2017 Microsoft