ICustomAttributeProvider.GetCustomAttributes Méthode

Définition

Retourne les attributs personnalisés définis sur ce membre.

Surcharges

GetCustomAttributes(Boolean)

Retourne un tableau de tous les attributs personnalisés définis sur ce membre, en dehors des attributs nommés, ou un tableau vide s’il n’y a aucun attribut personnalisé.

GetCustomAttributes(Type, Boolean)

Retourne un tableau d’attributs personnalisés définis sur ce membre, identifiés par type, ou un tableau vide s’il n’y a aucun attribut personnalisé de ce type.

GetCustomAttributes(Boolean)

Retourne un tableau de tous les attributs personnalisés définis sur ce membre, en dehors des attributs nommés, ou un tableau vide s’il n’y a aucun attribut personnalisé.

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

Paramètres

inherit
Boolean

Si true, recherchez la chaîne de hiérarchie pour l’attribut personnalisé hérité.

Retours

Object[]

Un tableau d’objets représentant des attributs personnalisés ou un tableau vide.

Exceptions

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

Il existe plusieurs attributs de type attributeType définis sur ce membre.

Remarques

L’appel ICustomAttributeProvider.GetCustomAttributes sur PropertyInfo ou EventInfo lorsque le inherit paramètre de GetCustomAttributes est true ne marche pas dans la hiérarchie de type. Utilisez System.Attribute pour hériter d’attributs personnalisés.

Cette méthode retourne des attributs personnalisés définis directement sur un membre non hérité uniquement.

S’applique à

GetCustomAttributes(Type, Boolean)

Retourne un tableau d’attributs personnalisés définis sur ce membre, identifiés par type, ou un tableau vide s’il n’y a aucun attribut personnalisé de ce type.

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

Paramètres

attributeType
Type

Type des attributs personnalisés.

inherit
Boolean

Si true, recherchez la chaîne de hiérarchie pour l’attribut personnalisé hérité.

Retours

Object[]

Un tableau d’objets représentant des attributs personnalisés ou un tableau vide.

Exceptions

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

attributeType a la valeur null.

Remarques

Si attributeType est une classe ou une interface de base, cette méthode retourne toute implémentation de ce type.

Cette méthode retourne des attributs personnalisés définis directement sur un membre non hérité uniquement.

L’appel ICustomAttributeProvider.GetCustomAttributes sur PropertyInfo ou EventInfo lorsque le inherit paramètre de GetCustomAttributes est true ne marche pas dans la hiérarchie de type. Utilisez System.Attribute pour hériter d’attributs personnalisés.

S’applique à