DbDataAdapter.OnRowUpdating(RowUpdatingEventArgs) Méthode
Définition
Déclenche l’événement RowUpdating
d’un fournisseur de données .NET.Raises the RowUpdating
event of a .NET data provider.
protected:
virtual void OnRowUpdating(System::Data::Common::RowUpdatingEventArgs ^ value);
protected:
abstract void OnRowUpdating(System::Data::Common::RowUpdatingEventArgs ^ value);
protected virtual void OnRowUpdating (System.Data.Common.RowUpdatingEventArgs value);
protected abstract void OnRowUpdating (System.Data.Common.RowUpdatingEventArgs value);
abstract member OnRowUpdating : System.Data.Common.RowUpdatingEventArgs -> unit
override this.OnRowUpdating : System.Data.Common.RowUpdatingEventArgs -> unit
abstract member OnRowUpdating : System.Data.Common.RowUpdatingEventArgs -> unit
Protected Overridable Sub OnRowUpdating (value As RowUpdatingEventArgs)
Protected MustOverride Sub OnRowUpdating (value As RowUpdatingEventArgs)
Paramètres
- value
- RowUpdatingEventArgs
RowUpdatingEventArgs qui contient les données d’événement.An RowUpdatingEventArgs that contains the event data.
Remarques
Le déclenchement d'un événement appelle le gestionnaire des événements par l'intermédiaire d'un délégué.Raising an event invokes the event handler through a delegate. Pour une vue d’ensemble, consultez gestion et déclenchement d’événements.For an overview, see Handling and Raising Events.
Notes pour les responsables de l’implémentation
Lors d' OnRowUpdating(RowUpdatingEventArgs) une substitution dans une classe dérivée, veillez à appeler la méthode de la classe de base OnRowUpdating(RowUpdatingEventArgs) .When overriding OnRowUpdating(RowUpdatingEventArgs) in a derived class, be sure to call the bases class's OnRowUpdating(RowUpdatingEventArgs) method.