ICustomAttributeProvider.GetCustomAttributes Metoda

Definice

Vrátí vlastní atributy definované v tomto členu.

Přetížení

GetCustomAttributes(Boolean)

Vrátí pole všech vlastních atributů definovaných v tomto členu, s výjimkou pojmenovaných atributů, nebo prázdné pole, pokud neexistují žádné vlastní atributy.

GetCustomAttributes(Type, Boolean)

Vrátí pole vlastních atributů definovaných na tomto členu, které jsou identifikovány typem, nebo prázdné pole, pokud neexistují žádné vlastní atributy tohoto typu.

GetCustomAttributes(Boolean)

Vrátí pole všech vlastních atributů definovaných v tomto členu, s výjimkou pojmenovaných atributů, nebo prázdné pole, pokud neexistují žádné vlastní atributy.

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

Parametry

inherit
Boolean

Když true, vyhledejte řetězec hierarchie pro zděděný vlastní atribut.

Návraty

Object[]

Pole objektů představujících vlastní atributy nebo prázdné pole.

Výjimky

Typ vlastního atributu nelze načíst.

Pro tento člen je definováno více než jeden atribut typu attributeType .

Poznámky

Volání ICustomAttributeProvider.GetCustomAttributes nebo PropertyInfoEventInfo když inherit parametr GetCustomAttributes is true neprovádí hierarchii typů. Slouží System.Attribute k dědění vlastních atributů.

Tato metoda vrací vlastní atributy definované přímo u nezděděného člena.

Platí pro

GetCustomAttributes(Type, Boolean)

Vrátí pole vlastních atributů definovaných na tomto členu, které jsou identifikovány typem, nebo prázdné pole, pokud neexistují žádné vlastní atributy tohoto typu.

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

Parametry

attributeType
Type

Typ vlastních atributů.

inherit
Boolean

Když true, vyhledejte řetězec hierarchie pro zděděný vlastní atribut.

Návraty

Object[]

Pole objektů představujících vlastní atributy nebo prázdné pole.

Výjimky

Typ vlastního atributu nelze načíst.

attributeType je null.

Poznámky

Pokud attributeType je základní třída nebo rozhraní, vrátí tato metoda jakoukoli implementaci tohoto typu.

Tato metoda vrací vlastní atributy definované přímo u nezděděného člena.

Volání ICustomAttributeProvider.GetCustomAttributes nebo PropertyInfoEventInfo když inherit parametr GetCustomAttributes is true neprovádí hierarchii typů. Slouží System.Attribute k dědění vlastních atributů.

Platí pro