Evento ApplyingChanges
Ocorre durante o carregamento, depois da conexão com o banco de dados, mas antes da aplicação das alterações.
Namespace: Microsoft.Synchronization.Data
Assembly: Microsoft.Synchronization.Data (em Microsoft.Synchronization.Data.dll)
Sintaxe
'Declaração
Public Event ApplyingChanges As EventHandler(Of DbApplyingChangesEventArgs)
'Uso
Dim instance As RelationalSyncProvider
Dim handler As EventHandler(Of DbApplyingChangesEventArgs)
AddHandler instance.ApplyingChanges, handler
public event EventHandler<DbApplyingChangesEventArgs> ApplyingChanges
public:
event EventHandler<DbApplyingChangesEventArgs^>^ ApplyingChanges {
void add (EventHandler<DbApplyingChangesEventArgs^>^ value);
void remove (EventHandler<DbApplyingChangesEventArgs^>^ value);
}
member ApplyingChanges : IEvent<EventHandler<DbApplyingChangesEventArgs>,
DbApplyingChangesEventArgs>