DB2®DataAdapter.OnRowUpdated Method

Raises the RowUpdated event using a RowUpdatedEventArgs object.

Namespace:
IBM.Data.DB2
Assembly:
IBM.Data.DB2 (in IBM.Data.DB2.dll)

Syntax


[Visual Basic]
Overrides Protected Sub OnRowUpdated( _
   ByVal value As RowUpdatedEventArgs _
)
[C#]
protected override void OnRowUpdated(
   RowUpdatedEventArgs value
);
[C++]
protected: void OnRowUpdated(
   RowUpdatedEventArgs* value
);
[JScript]
protected override function OnRowUpdated(
   value : RowUpdatedEventArgs
);

Parameters

value
A System.Data.Common.RowUpdatedEventArgs object that contains the event data.

Remarks

Raising an event invokes the event handler through a delegate.

Notes to inheritors: When overriding OnRowUpdated in a derived class, be sure to call the OnRowUpdated method of the base class.