Raises the RowUpdating event of a .NET Framework data provider.
[Visual Basic] Protected MustOverride Sub OnRowUpdating( _ ByVal value As RowUpdatingEventArgs _ ) [C#] protected abstract void OnRowUpdating( RowUpdatingEventArgs value ); [C++] protected: virtual void OnRowUpdating( RowUpdatingEventArgs* value ) = 0; [JScript] protected abstract function OnRowUpdating( value : RowUpdatingEventArgs );
Raising an event invokes the event handler through a delegate. For an overview, see
Notes to Inheritors: When overriding OnRowUpdating in a derived class, be sure to call the bases class's OnRowUpdating method.
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework - Windows CE .NET
DbDataAdapter Class | DbDataAdapter Members | System.Data.Common Namespace | OnRowUpdated