SaveKnowledgeWithFilterForgottenKnowledge メソッド

派生クラスでオーバーライドされると、ナレッジ、忘れられたナレッジ、およびフィルターの忘れられたナレッジ オブジェクトの一覧を保存します。

名前空間:  Microsoft.Synchronization
アセンブリ:  Microsoft.Synchronization (Microsoft.Synchronization.dll 内)

構文

'宣言
Sub SaveKnowledgeWithFilterForgottenKnowledge ( _
    syncKnowledge As SyncKnowledge, _
    forgottenKnowledge As ForgottenKnowledge, _
    filterForgottenKnowledge As ForgottenKnowledge() _
)
'使用
Dim instance As IFilterTrackingNotifyingChangeApplierTarget
Dim syncKnowledge As SyncKnowledge
Dim forgottenKnowledge As ForgottenKnowledge
Dim filterForgottenKnowledge As ForgottenKnowledge()

instance.SaveKnowledgeWithFilterForgottenKnowledge(syncKnowledge, _
    forgottenKnowledge, filterForgottenKnowledge)
void SaveKnowledgeWithFilterForgottenKnowledge(
    SyncKnowledge syncKnowledge,
    ForgottenKnowledge forgottenKnowledge,
    ForgottenKnowledge[] filterForgottenKnowledge
)
void SaveKnowledgeWithFilterForgottenKnowledge(
    SyncKnowledge^ syncKnowledge, 
    ForgottenKnowledge^ forgottenKnowledge, 
    array<ForgottenKnowledge^>^ filterForgottenKnowledge
)
abstract SaveKnowledgeWithFilterForgottenKnowledge : 
        syncKnowledge:SyncKnowledge * 
        forgottenKnowledge:ForgottenKnowledge * 
        filterForgottenKnowledge:ForgottenKnowledge[] -> unit 
function SaveKnowledgeWithFilterForgottenKnowledge(
    syncKnowledge : SyncKnowledge, 
    forgottenKnowledge : ForgottenKnowledge, 
    filterForgottenKnowledge : ForgottenKnowledge[]
)

パラメーター

  • forgottenKnowledge
    型 : Microsoft.Synchronization. . :: . .ForgottenKnowledge
    保存する忘れられたナレッジです。このパラメーターが nullNothingnullptrunitNULL 参照 (Visual Basic では Nothing) の場合、既存の忘れられたナレッジは変更されません。置き換えも不要です。
  • filterForgottenKnowledge
    型 : array<Microsoft.Synchronization. . :: . .ForgottenKnowledge> [] () [] []
    保存対象である、フィルターの忘れられたナレッジのオブジェクト一覧です。この一覧は、フィルター キー マップのフィルター キーで順序付けられています。

説明

syncKnowledge は、スコープの既存ナレッジを置き換える必要があります。forgottenKnowledge が null Nothing nullptr unit NULL 参照 (Visual Basic では Nothing) の場合は、forgottenKnowledge はスコープの忘れられたナレッジの置き換えも行う必要があります。それ以外の場合は、既存の忘れられたナレッジを保持する必要があります。filterForgottenKnowledge に含まれているフィルターの忘れられたナレッジのオブジェクトも、フィルターの忘れられたナレッジの対応するオブジェクトをレプリカで置き換える必要があります。Sync Framework は、各変更バッチのすべての変更が処理された後、変更バッチごとにこのメソッドを 1 回呼び出します。

次の例では、フィルターの忘れられたナレッジ オブジェクトの一覧をレプリカに保存してから StoreKnowledgeForScope を呼び出して、更新されたナレッジおよび忘れられたナレッジを保存します。

Public Sub SaveKnowledgeWithFilterForgottenKnowledge(ByVal syncKnowledge As SyncKnowledge, ByVal forgottenKnowledge As ForgottenKnowledge, ByVal filterForgottenKnowledge As ForgottenKnowledge()) Implements IFilterTrackingNotifyingChangeApplierTarget.SaveKnowledgeWithFilterForgottenKnowledge
    ' First update the list of filter forgotten knowledge objects.
    For iFilter As Integer = 0 To filterForgottenKnowledge.Length - 1
        DirectCast(_filterKeyMap(iFilter), AddressFilter).FilterForgottenKnowledge = filterForgottenKnowledge(iFilter)
    Next

    ' Update the list of filters that are stored in the custom replica metadata.
    AddressFilter.StoreFiltersInReplicaMetadata(_ContactStore.ContactReplicaMetadata, _ContactStore.TrackedFilters)

    ' Store the remaining knowledge objects.
    StoreKnowledgeForScope(syncKnowledge, forgottenKnowledge)
End Sub
public void SaveKnowledgeWithFilterForgottenKnowledge(SyncKnowledge syncKnowledge, ForgottenKnowledge forgottenKnowledge, ForgottenKnowledge[] filterForgottenKnowledge)
{
    // First update the list of filter forgotten knowledge objects.
    for (int iFilter = 0; iFilter < filterForgottenKnowledge.Length; iFilter++)
    {
        ((AddressFilter)_filterKeyMap[iFilter]).FilterForgottenKnowledge = filterForgottenKnowledge[iFilter];
    }

    // Update the list of filters that are stored in the custom replica metadata.
    AddressFilter.StoreFiltersInReplicaMetadata(_ContactStore.ContactReplicaMetadata, _ContactStore.TrackedFilters);

    // Store the remaining knowledge objects.
    StoreKnowledgeForScope(syncKnowledge, forgottenKnowledge);
}

参照

参照

IFilterTrackingNotifyingChangeApplierTargetインターフェイス

IFilterTrackingNotifyingChangeApplierTarget メンバー

Microsoft.Synchronization 名前空間