Evento BatchApplied
Ocorre depois que cada lote de alterações for aplicado ao destino.
Namespace: Microsoft.Synchronization.Data
Assembly: Microsoft.Synchronization.Data (em Microsoft.Synchronization.Data.dll)
Sintaxe
'Declaração
Public Event BatchApplied As EventHandler(Of DbBatchAppliedEventArgs)
'Uso
Dim instance As RelationalSyncProvider
Dim handler As EventHandler(Of DbBatchAppliedEventArgs)
AddHandler instance.BatchApplied, handler
public event EventHandler<DbBatchAppliedEventArgs> BatchApplied
public:
event EventHandler<DbBatchAppliedEventArgs^>^ BatchApplied {
void add (EventHandler<DbBatchAppliedEventArgs^>^ value);
void remove (EventHandler<DbBatchAppliedEventArgs^>^ value);
}
member BatchApplied : IEvent<EventHandler<DbBatchAppliedEventArgs>,
DbBatchAppliedEventArgs>
Comentários
Por padrão, o Sync Framework entrega alterações para cada nó em um único objeto DataSet. O evento BatchApplied será disparado somente se as alterações forem entregues em lotes. Para obter mais informações, consulte Como entregar alterações em lotes (SQL Server).