CallingConvention Property

DynamicMethod.CallingConvention Property

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

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

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

'Declaration
Public Overrides ReadOnly Property CallingConvention As CallingConventions

Property Value

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

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

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


Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Windows Phone

Show:
© 2017 Microsoft