TypeBuilder.GetInterface(String, 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.
Retourne l’interface implémentée (directement ou indirectement) par cette classe avec le nom qualifié complet correspondant au nom de l’interface donnée.
public:
override Type ^ GetInterface(System::String ^ name, bool ignoreCase);
public override Type? GetInterface (string name, bool ignoreCase);
public override Type GetInterface (string name, bool ignoreCase);
override this.GetInterface : string * bool -> Type
Public Overrides Function GetInterface (name As String, ignoreCase As Boolean) As Type
Paramètres
- name
- String
Nom de l’interface.
- ignoreCase
- Boolean
Si true
, la recherche ne respecte pas la casse. Si false
, la recherche respecte la casse.
Retours
Retourne un objet Type représentant l’interface implémentée. Retourne null si aucun nom d’interface correspondant n’est trouvé.
Exceptions
Cette méthode n’est pas implémentée pour les types incomplets.
Remarques
Récupérez le type à l’aide Type.GetType de ou Assembly.GetType et utilisez la réflexion sur le type récupéré.