Raises the RowUpdated event of a .NET Framework data provider.
[Visual Basic] Protected MustOverride Sub OnRowUpdated( _ ByVal value As RowUpdatedEventArgs _ ) [C#] protected abstract void OnRowUpdated( RowUpdatedEventArgs value ); [C++] protected: virtual void OnRowUpdated( RowUpdatedEventArgs* value ) = 0; [JScript] protected abstract function OnRowUpdated( value : RowUpdatedEventArgs );
Raising an event invokes the event handler through a delegate. For an overview, see
Notes to Inheritors: When overriding OnRowUpdated in a derived class, be sure to call the base class's OnRowUpdated 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 | OnRowUpdating