你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IDurableOrchestrationContext.CreateEntityProxy 方法

定义

重载

CreateEntityProxy<TEntityInterface>(String)

创建实体代理。

CreateEntityProxy<TEntityInterface>(EntityId)

创建实体代理。

CreateEntityProxy<TEntityInterface>(String)

Source:
IDurableOrchestrationContext.cs

创建实体代理。

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

类型参数

TEntityInterface

实体接口。

参数

entityKey
String

目标实体键。

返回

TEntityInterface

实体代理。

适用于

CreateEntityProxy<TEntityInterface>(EntityId)

Source:
IDurableOrchestrationContext.cs

创建实体代理。

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

类型参数

TEntityInterface

实体接口。

参数

entityId
EntityId

目标实体。

返回

TEntityInterface

实体代理。

适用于