Partager via


IDurableOrchestrationContext.CreateEntityProxy Méthode

Définition

Surcharges

CreateEntityProxy<TEntityInterface>(String)

Créez un proxy d’entité.

CreateEntityProxy<TEntityInterface>(EntityId)

Créez un proxy d’entité.

CreateEntityProxy<TEntityInterface>(String)

Source:
IDurableOrchestrationContext.cs

Créez un proxy d’entité.

public TEntityInterface CreateEntityProxy<TEntityInterface> (string entityKey);
abstract member CreateEntityProxy : string -> 'EntityInterface
Public Function CreateEntityProxy(Of TEntityInterface) (entityKey As String) As TEntityInterface

Paramètres de type

TEntityInterface

Interface d’entité.

Paramètres

entityKey
String

Clé d’entité cible.

Retours

TEntityInterface

Proxy d’entité.

S’applique à

CreateEntityProxy<TEntityInterface>(EntityId)

Source:
IDurableOrchestrationContext.cs

Créez un proxy d’entité.

public TEntityInterface CreateEntityProxy<TEntityInterface> (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entityId);
abstract member CreateEntityProxy : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId -> 'EntityInterface
Public Function CreateEntityProxy(Of TEntityInterface) (entityId As EntityId) As TEntityInterface

Paramètres de type

TEntityInterface

Interface d’entité.

Paramètres

entityId
EntityId

Entité cible.

Retours

TEntityInterface

Proxy d’entité.

S’applique à