Not
Åtkomst till denna sida kräver auktorisation. Du kan prova att logga in eller byta katalog.
Åtkomst till denna sida kräver auktorisation. Du kan prova att byta katalog.
When overridden in a derived class, removes the specified conflicts from the log.
Namespace: Microsoft.Synchronization
Assembly: Microsoft.Synchronization (in Microsoft.Synchronization.dll)
Syntax
'Declaration
Sub DeleteConflicts ( _
loggedConflictsToBeDeleted As IEnumerable(Of LoggedConflict) _
)
'Usage
Dim instance As IConflictLogAccess
Dim loggedConflictsToBeDeleted As IEnumerable(Of LoggedConflict)
instance.DeleteConflicts(loggedConflictsToBeDeleted)
void DeleteConflicts(
IEnumerable<LoggedConflict> loggedConflictsToBeDeleted
)
void DeleteConflicts(
IEnumerable<LoggedConflict^>^ loggedConflictsToBeDeleted
)
abstract DeleteConflicts :
loggedConflictsToBeDeleted:IEnumerable<LoggedConflict> -> unit
function DeleteConflicts(
loggedConflictsToBeDeleted : IEnumerable<LoggedConflict>
)
Parameters
- loggedConflictsToBeDeleted
Type: System.Collections.Generic.IEnumerable<LoggedConflict>
The list of conflicts to be deleted from the log.
Remarks
Notes to Implementers
Implementations of this method must delete only the conflicts listed in loggedConflictsToBeDeleted. Do not remove other conflicts that contain items listed in loggedConflictsToBeDeleted.