MySql.Data.MySqlClient.MySqlDataAdapter.OnRowUpdating C# (CSharp) Метод

OnRowUpdating() защищенный Метод

Overridden. Raises the RowUpdating event.
protected OnRowUpdating ( RowUpdatingEventArgs value ) : void
value System.Data.Common.RowUpdatingEventArgs A MySqlRowUpdatingEventArgs that contains the event data.
Результат void
		override protected void OnRowUpdating(RowUpdatingEventArgs value)
		{
            if (RowUpdating != null)
                RowUpdating(this, (value as MySqlRowUpdatingEventArgs));
		}