HttpSimpleClientProtocol.InvokeAsync 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.
Appelle la méthode spécifiée de manière asynchrone.
Surcharges
InvokeAsync(String, String, Object[], SendOrPostCallback) |
Appelle la méthode spécifiée de manière asynchrone. |
InvokeAsync(String, String, Object[], SendOrPostCallback, Object) |
Appelle la méthode spécifiée de manière asynchrone tout en conservant un état associé. |
InvokeAsync(String, String, Object[], SendOrPostCallback)
Appelle la méthode spécifiée de manière asynchrone.
protected:
void InvokeAsync(System::String ^ methodName, System::String ^ requestUrl, cli::array <System::Object ^> ^ parameters, System::Threading::SendOrPostCallback ^ callback);
protected void InvokeAsync (string methodName, string requestUrl, object[] parameters, System.Threading.SendOrPostCallback callback);
member this.InvokeAsync : string * string * obj[] * System.Threading.SendOrPostCallback -> unit
Protected Sub InvokeAsync (methodName As String, requestUrl As String, parameters As Object(), callback As SendOrPostCallback)
Paramètres
- methodName
- String
Nom de la méthode à appeler.
- requestUrl
- String
URL de la demande du service Web appelé.
- parameters
- Object[]
Paramètres à passer à la méthode.
- callback
- SendOrPostCallback
Délégué appelé lorsque l'appel de la méthode est terminé.
S’applique à
InvokeAsync(String, String, Object[], SendOrPostCallback, Object)
Appelle la méthode spécifiée de manière asynchrone tout en conservant un état associé.
protected:
void InvokeAsync(System::String ^ methodName, System::String ^ requestUrl, cli::array <System::Object ^> ^ parameters, System::Threading::SendOrPostCallback ^ callback, System::Object ^ userState);
protected void InvokeAsync (string methodName, string requestUrl, object[] parameters, System.Threading.SendOrPostCallback callback, object userState);
member this.InvokeAsync : string * string * obj[] * System.Threading.SendOrPostCallback * obj -> unit
Protected Sub InvokeAsync (methodName As String, requestUrl As String, parameters As Object(), callback As SendOrPostCallback, userState As Object)
Paramètres
- methodName
- String
Nom de la méthode à appeler.
- requestUrl
- String
URL de la demande du service Web appelé.
- parameters
- Object[]
Paramètres à passer à la méthode.
- callback
- SendOrPostCallback
Délégué appelé lorsque l'appel de la méthode est terminé.
- userState
- Object
Objet contenant des informations d'état associé passées au délégué callback
lorsque la méthode est terminée.