Bagikan melalui


DynamicMethod.CallingConvention Properti

Definisi

Mendapatkan konvensi panggilan yang ditentukan ketika metode dinamis dibuat.

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

Nilai Properti

Salah CallingConventions satu nilai yang menunjukkan konvensi pemanggilan metode.

Contoh

Contoh kode berikut menampilkan konvensi panggilan metode dinamis. Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk DynamicMethod kelas .

// 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)

Keterangan

Saat ini, konvensi panggilan untuk metode dinamis selalu Standard.

Berlaku untuk