System.Data.DataTableCollection.OnCollectionChanging C# (CSharp) Method

OnCollectionChanging() private method

private OnCollectionChanging ( CollectionChangeEventArgs ccevent ) : void
ccevent CollectionChangeEventArgs
return void
        private void OnCollectionChanging(CollectionChangeEventArgs ccevent)
        {
            if (_onCollectionChangingDelegate != null)
            {
                DataCommonEventSource.Log.Trace("<ds.DataTableCollection.OnCollectionChanging|INFO> {0}", ObjectID);
                _onCollectionChangingDelegate(this, ccevent);
            }
        }