Bagikan melalui


DynamicMethod.Attributes Properti

Definisi

Mendapatkan atribut yang ditentukan saat metode dinamis dibuat.

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

Nilai Properti

Kombinasi bitwise dari nilai yang MethodAttributes mewakili atribut untuk metode .

Contoh

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

// Display MethodAttributes for the dynamic method, set when 
// the dynamic method was created.
Console::WriteLine("\r\nMethod Attributes: {0}", hello->Attributes);
// Display MethodAttributes for the dynamic method, set when
// the dynamic method was created.
Console.WriteLine("\r\nMethod Attributes: {0}", hello.Attributes);
' Display MethodAttributes for the dynamic method, set when 
' the dynamic method was created.
Console.WriteLine(vbCrLf & "Method Attributes: {0}", _
    hello.Attributes)

Keterangan

Saat ini, atribut metode untuk metode dinamis selalu Public dan Static.

Berlaku untuk