Bagikan melalui


PropertyBuilder.GetCustomAttributes Metode

Definisi

Mengembalikan semua atribut kustom yang ditentukan pada properti ini.

Overload

GetCustomAttributes(Type, Boolean)

Mengembalikan array atribut kustom yang diidentifikasi oleh Type.

GetCustomAttributes(Boolean)

Mengembalikan array dari semua atribut kustom untuk properti ini.

GetCustomAttributes(Type, Boolean)

Sumber:
PropertyBuilder.cs

Mengembalikan array atribut kustom yang diidentifikasi oleh Type.

public:
 override cli::array <System::Object ^> ^ GetCustomAttributes(Type ^ attributeType, bool inherit);
public override object[] GetCustomAttributes (Type attributeType, bool inherit);
override this.GetCustomAttributes : Type * bool -> obj[]
Public Overrides Function GetCustomAttributes (attributeType As Type, inherit As Boolean) As Object()

Parameter

attributeType
Type

Array atribut kustom yang diidentifikasi berdasarkan jenis.

inherit
Boolean

Jika true, jalankan rantai pewarisan properti ini untuk menemukan atribut kustom.

Mengembalikan

Object[]

Array atribut kustom yang ditentukan pada anggota yang tercermin ini, atau null jika tidak ada atribut yang ditentukan pada anggota ini.

Pengecualian

Metode ini tidak didukung.

Keterangan

Refleksikan jenis induk properti menggunakan Type.GetType atau Assembly.GetType, ambil objek properti Reflection dari jenis , dan panggil PropertyInfo.GetCustomAttributes.

Berlaku untuk

GetCustomAttributes(Boolean)

Sumber:
PropertyBuilder.cs

Mengembalikan array dari semua atribut kustom untuk properti ini.

public:
 override cli::array <System::Object ^> ^ GetCustomAttributes(bool inherit);
public override object[] GetCustomAttributes (bool inherit);
override this.GetCustomAttributes : bool -> obj[]
Public Overrides Function GetCustomAttributes (inherit As Boolean) As Object()

Parameter

inherit
Boolean

Jika true, jalankan rantai pewarisan properti ini untuk menemukan atribut kustom.

Mengembalikan

Object[]

Array dari semua atribut kustom.

Pengecualian

Metode ini tidak didukung.

Keterangan

Refleksikan jenis induk properti menggunakan Type.GetType atau Assembly.GetType, ambil objek properti Reflection dari jenis , dan panggil PropertyInfo.GetCustomAttributes.

Berlaku untuk