Evento SimpleSyncProvider.ItemConflicting
Ocorre quando o Sync Framework detecta que um item em processamento está envolvido em um conflito de simultaneidade.
Namespace: Microsoft.Synchronization.SimpleProviders
Assembly: Microsoft.Synchronization.SimpleProviders (em microsoft.synchronization.simpleproviders.dll)
Sintaxe
'Declaração
Public Event ItemConflicting As EventHandler(Of SimpleSyncItemConflictingEventArgs)
'Uso
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);
}
/** @event */
public void add_ItemConflicting (EventHandler<SimpleSyncItemConflictingEventArgs> value)
/** @event */
public void remove_ItemConflicting (EventHandler<SimpleSyncItemConflictingEventArgs> value)
JScript supports the use of events, but not the declaration of new ones.
Comentários
Esse evento é usado para conflitos de simultaneidade, que ocorrem quando o mesmo item ou a mesma unidade de alteração é alterada em duas réplicas diferentes que são sincronizadas posteriormente. Para obter mais informações, consulte Manipulando conflitos para provedores simples.
Consulte também
Referência
Classe SimpleSyncProvider
Membros SimpleSyncProvider
Namespace Microsoft.Synchronization.SimpleProviders