DevExpress.DataAccess.BigQuery.BigQueryDataAdapter.OnRowUpdating C# (CSharp) Method

OnRowUpdating() protected method

protected OnRowUpdating ( RowUpdatingEventArgs value ) : void
value System.Data.Common.RowUpdatingEventArgs
return void
        protected override void OnRowUpdating(RowUpdatingEventArgs value)
        {
            BigQueryRowUpdatingEventArgs args = value as BigQueryRowUpdatingEventArgs;
            if(RowUpdating != null && (args != null)) {
                RowUpdating(this, args);
            }
        }