Community.CsharpSqlite.SQLiteClient.SqliteDataAdapter.OnRowUpdating C# (CSharp) Method

OnRowUpdating() protected method

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.
return void
		protected override void OnRowUpdating (RowUpdatingEventArgs args)
		{
			if (RowUpdating != null)
				RowUpdating(this, args);
		}