MemberDescriptor.FindMethod 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.
Recherche la méthode donnée par réflexion.
Surcharges
FindMethod(Type, String, Type[], Type) |
Recherche la méthode donnée par réflexion, en recherchant uniquement les méthodes publiques. |
FindMethod(Type, String, Type[], Type, Boolean) |
Recherche la méthode donnée par réflexion, avec une option permettant de rechercher uniquement les méthodes publiques. |
FindMethod(Type, String, Type[], Type)
- Source:
- MemberDescriptor.cs
- Source:
- MemberDescriptor.cs
- Source:
- MemberDescriptor.cs
Recherche la méthode donnée par réflexion, en recherchant uniquement les méthodes publiques.
protected:
static System::Reflection::MethodInfo ^ FindMethod(Type ^ componentClass, System::String ^ name, cli::array <Type ^> ^ args, Type ^ returnType);
protected static System.Reflection.MethodInfo FindMethod (Type componentClass, string name, Type[] args, Type returnType);
protected static System.Reflection.MethodInfo? FindMethod (Type componentClass, string name, Type[] args, Type returnType);
static member FindMethod : Type * string * Type[] * Type -> System.Reflection.MethodInfo
Protected Shared Function FindMethod (componentClass As Type, name As String, args As Type(), returnType As Type) As MethodInfo
Paramètres
- componentClass
- Type
Composant qui contient la méthode.
- name
- String
Nom de la méthode à rechercher.
- args
- Type[]
Tableau de paramètres pour la méthode, utilisé pour choisir entre différentes méthodes surchargées.
- returnType
- Type
Type à retourner pour la méthode.
Retours
MethodInfo qui représente la méthode ou null
si la méthode est introuvable.
S’applique à
FindMethod(Type, String, Type[], Type, Boolean)
- Source:
- MemberDescriptor.cs
- Source:
- MemberDescriptor.cs
- Source:
- MemberDescriptor.cs
Recherche la méthode donnée par réflexion, avec une option permettant de rechercher uniquement les méthodes publiques.
protected:
static System::Reflection::MethodInfo ^ FindMethod(Type ^ componentClass, System::String ^ name, cli::array <Type ^> ^ args, Type ^ returnType, bool publicOnly);
protected static System.Reflection.MethodInfo FindMethod (Type componentClass, string name, Type[] args, Type returnType, bool publicOnly);
protected static System.Reflection.MethodInfo? FindMethod (Type componentClass, string name, Type[] args, Type returnType, bool publicOnly);
static member FindMethod : Type * string * Type[] * Type * bool -> System.Reflection.MethodInfo
Protected Shared Function FindMethod (componentClass As Type, name As String, args As Type(), returnType As Type, publicOnly As Boolean) As MethodInfo
Paramètres
- componentClass
- Type
Composant qui contient la méthode.
- name
- String
Nom de la méthode à rechercher.
- args
- Type[]
Tableau de paramètres pour la méthode, utilisé pour choisir entre différentes méthodes surchargées.
- returnType
- Type
Type à retourner pour la méthode.
- publicOnly
- Boolean
Indique si la recherche doit se limiter aux méthodes publiques.
Retours
MethodInfo qui représente la méthode ou null
si la méthode est introuvable.