IConflictLogAccess Interface

When implemented by a derived class, represents access to a conflict log so that a change applier can manage conflicts in the log.

Namespace:  Microsoft.Synchronization
Assembly:  Microsoft.Synchronization (in Microsoft.Synchronization.dll)

public interface IConflictLogAccess

The IConflictLogAccess type exposes the following members.

  NameDescription
Public methodDeleteConflictsWhen overridden in a derived class, removes the specified conflicts from the log.
Public methodGetAllConflictsWhen overridden in a derived class, gets a list that contains all of the conflicts in the log.
Public methodGetConflictsByConflictingItemIdWhen overridden in a derived class, gets a list that contains either all of the conflicts in the log, or only the conflicts that conflict with at least one of the items in the specified list of requested items.
Public methodGetItemConflictsWhen overridden in a derived class, gets a list that contains either all of the conflicts in the log, or only the conflicts that are identified by the specified list of requested items.
Top

IConflictLogAccess is typically implemented by the destination provider.

To take advantage of the change applier's assistance in managing conflicts, the destination provider passes an IConflictLogAccess object to the ApplyChanges method. During processing of this method, the change applier resolves conflicts and removes obsolete conflicts from the log.

Show: