次の方法で共有


ResourceMirror.UpdateResource<ItemType,ResourceType> 代理人

定義

既存のリソースを更新するためのコールバック。 これは、Sync の currentItems と resources リストの各項目とそれに関連付けられているリソースに対して呼び出されます。

public delegate void ResourceMirror.UpdateResource<ItemType,ResourceType>(ItemType item, ResourceType resource);
type ResourceMirror.UpdateResource<'ItemType, 'ResourceType> = delegate of 'ItemType * 'ResourceType -> unit
Public Delegate Sub ResourceMirror.UpdateResource(Of ItemType, ResourceType)(item As ItemType, resource As ResourceType)

型パラメーター

ItemType

ソース データの種類。

ResourceType

マネージド リソースの種類。

パラメーター

item
ItemType

ソース項目。

resource
ResourceType

関連付けられているリソース。

注釈

1 回の同期中に、特定のアイテム/リソース ペアに対して呼び出される create/update/destroy は 1 つだけです。

適用対象