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

OnRowUpdated() protected method

Raises the RowUpdating event of Sqlite data provider.
protected OnRowUpdated ( RowUpdatedEventArgs args ) : void
args System.Data.Common.RowUpdatedEventArgs An RowUpdatingEventArgs that contains the event data.
return void
		protected override void OnRowUpdated (RowUpdatedEventArgs args)
		{
			if (RowUpdated != null)
				RowUpdated(this, args);
		}