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

OnCollectionChanged() private method

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