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

OnRowDeleted() protected method

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