DynamicMethod.CallingConvention Eigenschaft

Definition

Ruft die Aufrufkonvention ab, die beim Erstellen der dynamischen Methode angegeben wurde.

public:
 virtual property System::Reflection::CallingConventions CallingConvention { System::Reflection::CallingConventions get(); };
public override System.Reflection.CallingConventions CallingConvention { get; }
member this.CallingConvention : System.Reflection.CallingConventions
Public Overrides ReadOnly Property CallingConvention As CallingConventions

Eigenschaftswert

Einer der CallingConventions-Werte, der die Aufrufkonvention der Methode angibt.

Beispiele

Im folgenden Codebeispiel wird die Aufrufkonvention einer dynamischen Methode angezeigt. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die DynamicMethod-Klasse bereitgestellt wird.

// Display the calling convention of the dynamic method, set when the 
// dynamic method was created.
Console::WriteLine("\r\nCalling convention: {0}", hello->CallingConvention);
// Display the calling convention of the dynamic method, set when the
// dynamic method was created.
Console.WriteLine("\r\nCalling convention: {0}", hello.CallingConvention);
' Display the calling convention of the dynamic method, set when the 
' dynamic method was created.
Console.WriteLine(vbCrLf & "Calling convention: {0}", _ 
    hello.CallingConvention)

Hinweise

Derzeit ist die Aufrufkonvention für eine dynamische Methode immer Standard.

Gilt für: