MemoryConflictLog::DeleteConflicts Method
Removes the specified conflicts from the log.
Assembly: Microsoft.Synchronization (in Microsoft.Synchronization.dll)
public: virtual void DeleteConflicts( IEnumerable<LoggedConflict^>^ loggedConflictsToBeDeleted ) sealed
Parameters
- loggedConflictsToBeDeleted
- Type: System.Collections.Generic::IEnumerable<LoggedConflict>
The list of conflicts to be deleted from the log.
Implements
IConflictLogAccess::DeleteConflicts(IEnumerable<LoggedConflict>)| Exception | Condition |
|---|---|
| ArgumentNullException | loggedConflictsToBeDeleted is a nullptr. |
This method first attempts to delete the specified conflicts from the in-memory conflict log. When a conflict is not found in the in-memory conflict log, the DeleteConflicts method of the conflict log of the provider is called, if it was specified in the constructor.
Show: