DynamicMethod.IsDefined(Type, Boolean) 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.
Indique si le type d’attribut personnalisé spécifié est défini.
public:
override bool IsDefined(Type ^ attributeType, bool inherit);
public override bool IsDefined (Type attributeType, bool inherit);
override this.IsDefined : Type * bool -> bool
Public Overrides Function IsDefined (attributeType As Type, inherit As Boolean) As Boolean
Paramètres
- inherit
- Boolean
true
pour explorer la chaîne d’héritage de la méthode et rechercher les attributs personnalisés ; false
pour vérifier uniquement la méthode actuelle.
Retours
true
si le type d’attribut personnalisé spécifié est défini ; sinon, false
.
Remarques
Pour les méthodes dynamiques, spécifier true
pour inherit
n’a aucun effet. Les méthodes dynamiques n’ont aucune chaîne d’héritage.
Notes
Les attributs personnalisés ne sont actuellement pas pris en charge sur les méthodes dynamiques.