TypeDelegator.GetCustomAttributes Méthode

Définition

Retourne tous les attributs personnalisés définis pour ce type.

Surcharges

GetCustomAttributes(Boolean)

Retourne tous les attributs personnalisés définis pour ce type, en spécifiant si les attributs doivent être recherchés dans la chaîne d'héritage du type.

GetCustomAttributes(Type, Boolean)

Retourne un tableau des attributs personnalisés identifiés par type.

GetCustomAttributes(Boolean)

Source:
TypeDelegator.cs
Source:
TypeDelegator.cs
Source:
TypeDelegator.cs

Retourne tous les attributs personnalisés définis pour ce type, en spécifiant si les attributs doivent être recherchés dans la chaîne d'héritage du type.

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

Paramètres

inherit
Boolean

Spécifie s'il faut rechercher les attributs dans la chaîne d'héritage de ce type.

Retours

Object[]

Tableau d'objets contenant tous les attributs personnalisés définis pour ce type.

Exceptions

Un type d’attribut personnalisé ne peut pas être chargé.

S’applique à

GetCustomAttributes(Type, Boolean)

Source:
TypeDelegator.cs
Source:
TypeDelegator.cs
Source:
TypeDelegator.cs

Retourne un tableau des attributs personnalisés identifiés par 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()

Paramètres

attributeType
Type

Tableau d'attributs personnalisés identifiés par type.

inherit
Boolean

Spécifie s'il faut rechercher les attributs dans la chaîne d'héritage de ce type.

Retours

Object[]

Un tableau d'objets contenant les attributs personnalisés définis dans ce type qui correspondent au paramètre attributeType et spécifiant si les attributs doivent être recherchés dans la chaîne d'héritage du type, ou null si aucun attribut personnalisé n'a été défini sur ce type.

Exceptions

attributeType a la valeur null.

Un type d’attribut personnalisé ne peut pas être chargé.

S’applique à