SyncCallbacks.ItemChangeSkipped Event

Occurs when a synchronization provider sets a recoverable error while an item is being loaded or saved.

Namespace:  Microsoft.Synchronization
Assembly:  Microsoft.Synchronization (in Microsoft.Synchronization.dll)

'Declaration
Public Event ItemChangeSkipped As EventHandler(Of ItemChangeSkippedEventArgs)
'Usage
Dim instance As SyncCallbacks
Dim handler As EventHandler(Of ItemChangeSkippedEventArgs)

AddHandler instance.ItemChangeSkipped, handler

An example of when this event is raised is when a destination provider tries to apply a change to an item, but the item is locked in the item store. The provider then sets a recoverable error for that item, and this event is raised to report it.

Show: