次の方法で共有


IDurableOrchestrationContext.CreateEntityProxy メソッド

定義

オーバーロード

CreateEntityProxy<TEntityInterface>(String)

エンティティ プロキシを作成します。

CreateEntityProxy<TEntityInterface>(EntityId)

エンティティ プロキシを作成します。

CreateEntityProxy<TEntityInterface>(String)

ソース:
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)

ソース:
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

エンティティ プロキシ。

適用対象