DynamicMethod.CallingConvention Property

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

Gets the calling convention specified when the dynamic method was created.

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

Syntax

'Declaration
Public Overrides ReadOnly Property CallingConvention As CallingConventions
public override CallingConventions CallingConvention { get; }

Property Value

Type: System.Reflection.CallingConventions
One of the CallingConventions values that indicates the calling convention of the method.

Remarks

Currently, the calling convention for a dynamic method is always Standard.

Examples

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

' Display the calling convention of the dynamic method, set when the 
' dynamic method was created.
outputBlock.Text &= String.Format("Calling convention: {0}", _
    hello.CallingConvention) & vbLf
// Display the calling convention of the dynamic method, set when the 
// dynamic method was created.
outputBlock.Text += String.Format("Calling convention: {0}", hello.CallingConvention) + "\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.