MySqlRowUpdatedEventHandler Delegate

MySQL Connector/Net

Represents the method that will handle the RowUpdated 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 MySqlRowUpdatedEventHandler(
	Object sender,
	MySqlRowUpdatedEventArgs e
)
Visual Basic (Declaration)
Public Delegate Sub MySqlRowUpdatedEventHandler ( _
	sender As Object, _
	e As MySqlRowUpdatedEventArgs _
)
Visual C++
public delegate void MySqlRowUpdatedEventHandler(
	Object^ sender, 
	MySqlRowUpdatedEventArgs^ e
)

See Also