IConflictLogWriter Interface
When implemented by a derived class, represents a writer that saves conflicts to a conflict log.
Assembly: Microsoft.Synchronization (in Microsoft.Synchronization.dll)
The IConflictLogWriter type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | SaveConflict | When overridden in a derived class, saves information about a change that caused a concurrency conflict. |
![]() | SaveConstraintConflict | When overridden in a derived class, saves information about a change that caused a constraint conflict. |
The MemoryConflictLog class that is provided by Sync Framework uses an IConflictLogWriter interface to save conflicts to a persistent conflict log when Persist is called.
The IConflictLogWriter method signatures exactly match those of the SaveConflict and SaveConstraintConflict methods so that a destination provider can use the same implementation for all of these interfaces.
Show:
