System.Data.DataTable.OnRowDeleting C# (CSharp) Method

OnRowDeleting() protected method

Raises the event.
protected OnRowDeleting ( DataRowChangeEventArgs e ) : void
e DataRowChangeEventArgs
return void
        protected virtual void OnRowDeleting(DataRowChangeEventArgs e)
        {
            Debug.Assert((null != e) && ((null != _onRowDeletingDelegate) || IsTypedDataTable), "OnRowDeleting arguments");
            if (_onRowDeletingDelegate != null)
            {
                DataCommonEventSource.Log.Trace("<ds.DataTable.OnRowDeleting|INFO> {0}", ObjectID);
                _onRowDeletingDelegate(this, e);
            }
        }
DataTable