SimpleSyncProvider.ItemConflicting Evento
Se produce cuando Sync Framework detecta que un elemento que se está procesando está implicado en un conflicto de simultaneidad.
Espacio de nombres: Microsoft.Synchronization.SimpleProviders
Ensamblado: Microsoft.Synchronization.SimpleProviders (en microsoft.synchronization.simpleproviders.dll)
Sintaxis
'Declaración
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.
Notas
Este evento se utiliza para los conflictos de simultaneidad, que se producen cuando el mismo elemento o unidad de cambio se cambia en dos réplicas distintas que después se sincronizan. Para obtener más información, vea Controlar conflictos en proveedores simples.
Vea también
Referencia
SimpleSyncProvider Clase
SimpleSyncProvider Miembros
Microsoft.Synchronization.SimpleProviders Espacio de nombres