OracleRowUpdatingEventHandler Delegate
The OracleRowUpdatingEventHandler
delegate represents the signature of the method that handles the OracleDataAdapter.RowUpdating
event.
Declaration
// C# public delegate void OracleRowUpdatingEventHandler (object sender, OracleRowUpdatingEventArgs eventArgs);
Requirements
Provider | ODP.NET, Unmanaged Driver | ODP.NET, Managed Driver | ODP.NET Core |
---|---|---|---|
Assembly |
|
|
|
Namespace |
|
|
|
.NET Framework |
4.8 |
4.8 |
- |
.NET (Core) |
- |
- |
Parameters
-
sender
The source of the event.
-
eventArgs
The
OracleRowUpdatingEventArgs
object that contains the event data.
Remarks
Event callbacks can be registered through this event delegate for applications that wish to be notified after a row is updated.
In the .NET framework, the convention of an event delegate requires two parameters: the object that raises the event and the event data.