MethodBuilder.GetCustomAttributes Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne les attributs personnalisés définis pour cette méthode.
Surcharges
GetCustomAttributes(Boolean) |
Retourne tous les attributs personnalisés définis pour cette méthode. |
GetCustomAttributes(Type, Boolean) |
Retourne les attributs personnalisés identifiés par le type donné. |
GetCustomAttributes(Boolean)
- Source:
- MethodBuilder.cs
Retourne tous les attributs personnalisés définis pour cette méthode.
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 personnalisés dans la chaîne d’héritage de ce membre.
Retours
Retourne un tableau d’objets représentant tous les attributs personnalisés de cette méthode.
Exceptions
Cette méthode n’est pas prise en charge pour l’instant. Récupérez la méthode à l’aide de GetMethod(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[]) et appelez GetCustomAttributes(Boolean) sur le MethodInfo retourné.
S’applique à
GetCustomAttributes(Type, Boolean)
- Source:
- MethodBuilder.cs
Retourne les attributs personnalisés identifiés par le type donné.
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
Type d’attribut personnalisé.
- inherit
- Boolean
Spécifie s’il faut rechercher les attributs personnalisés dans la chaîne d’héritage de ce membre.
Retours
Retourne un tableau d’objets représentant les attributs de cette méthode qui sont de type attributeType
.
Exceptions
Cette méthode n’est pas prise en charge pour l’instant. Récupérez la méthode à l’aide de GetMethod(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[]) et appelez GetCustomAttributes(Boolean) sur le MethodInfo retourné.