SimpleSyncProvider.ItemConflicting Event

Occurs when Sync Framework detects that an item being processed is involved in a concurrency conflict.

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

Syntax

'Declaration
Public Event ItemConflicting As EventHandler(Of SimpleSyncItemConflictingEventArgs)
'Usage
Dim instance As SimpleSyncProvider
Dim handler As EventHandler(Of SimpleSyncItemConflictingEventArgs)

AddHandler instance.ItemConflicting, handler
public event EventHandler<SimpleSyncItemConflictingEventArgs> ItemConflicting
public:
 event EventHandler<SimpleSyncItemConflictingEventArgs^>^ ItemConflicting {
    void add (EventHandler<SimpleSyncItemConflictingEventArgs^>^ value);
    void remove (EventHandler<SimpleSyncItemConflictingEventArgs^>^ value);
}
member ItemConflicting : IEvent<EventHandler<SimpleSyncItemConflictingEventArgs>,
    SimpleSyncItemConflictingEventArgs>
JScript supports the use of events, but not the declaration of new ones.

Remarks

This event is used for concurrency conflicts, which occur when the same item or change unit is changed on two different replicas that are later synchronized. For more information, see Handling Conflicts for Simple Providers.

See Also

Reference

SimpleSyncProvider Class

Microsoft.Synchronization.SimpleProviders Namespace