NewLateBinding.FallbackCall 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.
Attention
do not use this method
Attention
FallbackCall has been deprecated and is not supported.
Exécute un appel de méthode ou de fonction à liaison tardive. Cette méthode d'assistance n'est pas conçue pour être directement appelée depuis votre code.
public:
static System::Object ^ FallbackCall(System::Object ^ Instance, System::String ^ MemberName, cli::array <System::Object ^> ^ Arguments, cli::array <System::String ^> ^ ArgumentNames, bool IgnoreReturn);
[System.Obsolete("do not use this method", true)]
public static object? FallbackCall (object Instance, string MemberName, object[] Arguments, string[] ArgumentNames, bool IgnoreReturn);
[System.Obsolete("FallbackCall has been deprecated and is not supported.", true)]
public static object? FallbackCall (object Instance, string MemberName, object[] Arguments, string[] ArgumentNames, bool IgnoreReturn);
[System.Obsolete("do not use this method", true)]
public static object FallbackCall (object Instance, string MemberName, object[] Arguments, string[] ArgumentNames, bool IgnoreReturn);
[<System.Obsolete("do not use this method", true)>]
static member FallbackCall : obj * string * obj[] * string[] * bool -> obj
[<System.Obsolete("FallbackCall has been deprecated and is not supported.", true)>]
static member FallbackCall : obj * string * obj[] * string[] * bool -> obj
Public Shared Function FallbackCall (Instance As Object, MemberName As String, Arguments As Object(), ArgumentNames As String(), IgnoreReturn As Boolean) As Object
Paramètres
- Instance
- Object
Instance de l'objet d'appel exposant la propriété ou la méthode.
- MemberName
- String
Nom de la propriété ou méthode sur l'objet d'appel.
- Arguments
- Object[]
Tableau contenant les arguments à passer à la propriété ou à la méthode appelée.
- ArgumentNames
- String[]
Tableau des noms d'arguments.
- IgnoreReturn
- Boolean
Valeur Boolean
indiquant si la valeur de retour peut être ignorée.
Retours
Instance de l'objet d'appel.
- Attributs
Remarques
Semblable à CallByName.