SoapHttpClientProtocol.InvokeAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Richiama il metodo specificato in modo asincrono.
Overload
InvokeAsync(String, Object[], SendOrPostCallback) |
Richiama il metodo specificato in modo asincrono. |
InvokeAsync(String, Object[], SendOrPostCallback, Object) |
Richiama il metodo specificato in modo asincrono. |
InvokeAsync(String, Object[], SendOrPostCallback)
Richiama il metodo specificato in modo asincrono.
protected:
void InvokeAsync(System::String ^ methodName, cli::array <System::Object ^> ^ parameters, System::Threading::SendOrPostCallback ^ callback);
protected void InvokeAsync (string methodName, object[] parameters, System.Threading.SendOrPostCallback callback);
member this.InvokeAsync : string * obj[] * System.Threading.SendOrPostCallback -> unit
Protected Sub InvokeAsync (methodName As String, parameters As Object(), callback As SendOrPostCallback)
Parametri
- methodName
- String
Nome del metodo da richiamare.
- parameters
- Object[]
Parametri da passare al metodo.
- callback
- SendOrPostCallback
Delegato chiamato al termine della chiamata al metodo.
Si applica a
InvokeAsync(String, Object[], SendOrPostCallback, Object)
Richiama il metodo specificato in modo asincrono.
protected:
void InvokeAsync(System::String ^ methodName, cli::array <System::Object ^> ^ parameters, System::Threading::SendOrPostCallback ^ callback, System::Object ^ userState);
protected void InvokeAsync (string methodName, object[] parameters, System.Threading.SendOrPostCallback callback, object userState);
member this.InvokeAsync : string * obj[] * System.Threading.SendOrPostCallback * obj -> unit
Protected Sub InvokeAsync (methodName As String, parameters As Object(), callback As SendOrPostCallback, userState As Object)
Parametri
- methodName
- String
Nome del metodo da richiamare.
- parameters
- Object[]
Parametri da passare al metodo.
- callback
- SendOrPostCallback
Delegato chiamato al termine della chiamata al metodo.
- userState
- Object
Oggetto utilizzato per passare le informazioni sullo stato nel delegato callback
.