다음을 통해 공유


SqlCeDataAdapter.OnRowUpdating Method

Note: This namespace, class, or member is supported only in version 1.1 of the .NET Framework.

Raises the RowUpdating event using a RowUpdatingEventArgs object.

Overrides Protected Sub OnRowUpdating( _
   ByVal value As RowUpdatingEventArgs _)
[C#]
protected override void OnRowUpdating(RowUpdatingEventArgsvalue);
[C++]
protected: void OnRowUpdating(RowUpdatingEventArgs* value);
[JScript]
protected override function OnRowUpdating(
   value : RowUpdatingEventArgs);

Parameters

Remarks

Raising an event invokes the event handler through a delegate. For an overview, see Raising an Event.

Notes to Inheritors: When overriding OnRowUpdating in a derived class, call the bases class's OnRowUpdating method.

Requirements

Platforms: .NET Compact Framework

.NET Framework Security:

See Also

SqlCeDataAdapter Class | SqlCeDataAdapter Members | System.Data.SqlServerCe Namespace | OnRowUpdated