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)

Syntax

'Declaration
Public Interface IConflictLogAccess
'Usage
Dim instance As IConflictLogAccess
public interface IConflictLogAccess
public interface class IConflictLogAccess
type IConflictLogAccess =  interface end
public interface IConflictLogAccess

The IConflictLogAccess type exposes the following members.

Methods

  Name Description
Public method DeleteConflicts When overridden in a derived class, removes the specified conflicts from the log.
Public method GetAllConflicts When overridden in a derived class, gets a list that contains all of the conflicts in the log.
Public method GetConflictsByConflictingItemId When 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 method GetItemConflicts When 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

Remarks

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.

See Also

Reference

Microsoft.Synchronization Namespace