EntityProxy.CallAsync 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.
Surcharges
CallAsync(String, Object) |
Appelez la fonction d’entité. |
CallAsync<TResult>(String, Object) |
Appelez la fonction d’entité. |
CallAsync(String, Object)
- Source:
- EntityProxy.cs
Appelez la fonction d’entité.
protected internal System.Threading.Tasks.Task CallAsync (string operationName, object operationInput);
member this.CallAsync : string * obj -> System.Threading.Tasks.Task
Protected Friend Function CallAsync (operationName As String, operationInput As Object) As Task
Paramètres
- operationName
- String
Nom de l’opération.
- operationInput
- Object
Entrée de l’opération.
Retours
Task représentant le résultat de l’opération asynchrone.
S’applique à
CallAsync<TResult>(String, Object)
- Source:
- EntityProxy.cs
Appelez la fonction d’entité.
protected internal System.Threading.Tasks.Task<TResult> CallAsync<TResult> (string operationName, object operationInput);
member this.CallAsync : string * obj -> System.Threading.Tasks.Task<'Result>
Protected Friend Function CallAsync(Of TResult) (operationName As String, operationInput As Object) As Task(Of TResult)
Paramètres de type
- TResult
Type de retour de la fonction d’entité appelée.
Paramètres
- operationName
- String
Nom de l’opération.
- operationInput
- Object
Entrée de l’opération.
Retours
Task<TResult> représentant le résultat de l’opération asynchrone.
S’applique à
Azure SDK for .NET