System.Data.DataRelationCollection.OnCollectionChanging C# (CSharp) Méthode

OnCollectionChanging() protected méthode

protected OnCollectionChanging ( CollectionChangeEventArgs ccevent ) : void
ccevent System.ComponentModel.CollectionChangeEventArgs
Résultat void
        protected virtual void OnCollectionChanging(CollectionChangeEventArgs ccevent)
        {
            if (_onCollectionChangingDelegate != null)
            {
                DataCommonEventSource.Log.Trace("<ds.DataRelationCollection.OnCollectionChanging|INFO> {0}", ObjectID);
                _onCollectionChangingDelegate(this, ccevent);
            }
        }