DbDataAdapter.OnRowUpdated(RowUpdatedEventArgs) Méthode
Définition
Déclenche l’événement RowUpdated
d’un fournisseur de données .NET.Raises the RowUpdated
event of a .NET data provider.
protected:
virtual void OnRowUpdated(System::Data::Common::RowUpdatedEventArgs ^ value);
protected:
abstract void OnRowUpdated(System::Data::Common::RowUpdatedEventArgs ^ value);
protected virtual void OnRowUpdated (System.Data.Common.RowUpdatedEventArgs value);
protected abstract void OnRowUpdated (System.Data.Common.RowUpdatedEventArgs value);
abstract member OnRowUpdated : System.Data.Common.RowUpdatedEventArgs -> unit
override this.OnRowUpdated : System.Data.Common.RowUpdatedEventArgs -> unit
abstract member OnRowUpdated : System.Data.Common.RowUpdatedEventArgs -> unit
Protected Overridable Sub OnRowUpdated (value As RowUpdatedEventArgs)
Protected MustOverride Sub OnRowUpdated (value As RowUpdatedEventArgs)
Paramètres
- value
- RowUpdatedEventArgs
RowUpdatedEventArgs qui contient les données d’événement.A RowUpdatedEventArgs 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' OnRowUpdated(RowUpdatedEventArgs) une substitution dans une classe dérivée, veillez à appeler la méthode de la classe de base OnRowUpdated(RowUpdatedEventArgs) .When overriding OnRowUpdated(RowUpdatedEventArgs) in a derived class, be sure to call the base class's OnRowUpdated(RowUpdatedEventArgs) method.