MySqlRowUpdatingEventHandler Delegate

MySQL Connector/Net

Represents the method that will handle the RowUpdating event of a MySqlDataAdapter.

Namespace:  MySql.Data.MySqlClient
Assembly:  MySql.Data (in MySql.Data.dll) Version: 6.2.2.0

Syntax

C#
public delegate void MySqlRowUpdatingEventHandler(
	Object sender,
	MySqlRowUpdatingEventArgs e
)
Visual Basic (Declaration)
Public Delegate Sub MySqlRowUpdatingEventHandler ( _
	sender As Object, _
	e As MySqlRowUpdatingEventArgs _
)
Visual C++
public delegate void MySqlRowUpdatingEventHandler(
	Object^ sender, 
	MySqlRowUpdatingEventArgs^ e
)

See Also