System.Data.DataRelationCollection.OnCollectionChanged C# (CSharp) Метод

OnCollectionChanged() защищенный Метод

This method is called whenever the collection changes. Overriders of this method should call the base implementation of this method.
protected OnCollectionChanged ( CollectionChangeEventArgs ccevent ) : void
ccevent System.ComponentModel.CollectionChangeEventArgs
Результат void
        protected virtual void OnCollectionChanged(CollectionChangeEventArgs ccevent)
        {
            if (_onCollectionChangedDelegate != null)
            {
                DataCommonEventSource.Log.Trace("<ds.DataRelationCollection.OnCollectionChanged|INFO> {0}", ObjectID);
                _onCollectionChangedDelegate(this, ccevent);
            }
        }