IEntityProxyContext.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(EntityId, String, Object) |
Appelez la fonction d’entité. |
CallAsync<TResult>(EntityId, String, Object) |
Appelez la fonction d’entité. |
CallAsync(EntityId, String, Object)
- Source:
- IEntityProxyContext.cs
Appelez la fonction d’entité.
public System.Threading.Tasks.Task CallAsync (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entityId, string operationName, object operationInput);
abstract member CallAsync : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId * string * obj -> System.Threading.Tasks.Task
Public Function CallAsync (entityId As EntityId, operationName As String, operationInput As Object) As Task
Paramètres
- entityId
- EntityId
ID d’entité.
- operationName
- String
Nom de l’opération d’entité.
- operationInput
- Object
Valeur d’entrée d’entité.
Retours
Task représentant le résultat de l’opération asynchrone.
S’applique à
CallAsync<TResult>(EntityId, String, Object)
- Source:
- IEntityProxyContext.cs
Appelez la fonction d’entité.
public System.Threading.Tasks.Task<TResult> CallAsync<TResult> (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entityId, string operationName, object operationInput);
abstract member CallAsync : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId * string * obj -> System.Threading.Tasks.Task<'Result>
Public Function CallAsync(Of TResult) (entityId As EntityId, operationName As String, operationInput As Object) As Task(Of TResult)
Paramètres de type
- TResult
Type de résultat.
Paramètres
- entityId
- EntityId
ID d’entité.
- operationName
- String
Nom de l’opération d’entité.
- operationInput
- Object
Valeur d’entrée d’entité.
Retours
Task<TResult> représentant le résultat de l’opération asynchrone.
S’applique à
Azure SDK for .NET