DynamicMethod.Attributes Property

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets the attributes specified when the dynamic method was created.

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

Syntax

'Declaration
Public Overrides ReadOnly Property Attributes As MethodAttributes
public override MethodAttributes Attributes { get; }

Property Value

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

Remarks

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

Examples

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
// Display MethodAttributes for the dynamic method, set when 
// the dynamic method was created.
outputBlock.Text += String.Format("Method Attributes: {0}", hello.Attributes) + "\n";

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.