Freigeben über


IEntityProxyContext.CallAsync Methode

Definition

Überlädt

CallAsync(EntityId, String, Object)

Rufen Sie die Entitätsfunktion auf.

CallAsync<TResult>(EntityId, String, Object)

Rufen Sie die Entitätsfunktion auf.

CallAsync(EntityId, String, Object)

Quelle:
IEntityProxyContext.cs

Rufen Sie die Entitätsfunktion auf.

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

Parameter

entityId
EntityId

Entitäts-ID.

operationName
String

Name des Entitätsvorgangs.

operationInput
Object

Entitätseingabewert.

Gibt zurück

Ein Task , der das Ergebnis des asynchronen Vorgangs darstellt.

Gilt für:

CallAsync<TResult>(EntityId, String, Object)

Quelle:
IEntityProxyContext.cs

Rufen Sie die Entitätsfunktion auf.

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)

Typparameter

TResult

Ergebnistyp.

Parameter

entityId
EntityId

Entitäts-ID.

operationName
String

Name des Entitätsvorgangs.

operationInput
Object

Entitätseingabewert.

Gibt zurück

Task<TResult>

Ein Task<TResult> , der das Ergebnis des asynchronen Vorgangs darstellt.

Gilt für: