Community.CsharpSqlite.SQLiteClient.SqliteDataAdapter.OnRowUpdating C# (CSharp) Méthode

OnRowUpdating() protected méthode

Raises the RowUpdated event of a Sqlite data provider.
protected OnRowUpdating ( RowUpdatingEventArgs args ) : void
args System.Data.Common.RowUpdatingEventArgs A RowUpdatedEventArgs that contains the event data.
Résultat void
		protected override void OnRowUpdating (RowUpdatingEventArgs args)
		{
			if (RowUpdating != null)
				RowUpdating(this, args);
		}