Note
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
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.