System.Windows.Data.DataList.RaiseCollectionChanged C# (CSharp) Method

RaiseCollectionChanged() private method

private RaiseCollectionChanged ( NotifyCollectionChangedAction action, object item, int index ) : void
action NotifyCollectionChangedAction
item object
index int
return void
        private void RaiseCollectionChanged(NotifyCollectionChangedAction action, object item, int index)
        {
            if (_collectionChangedHandler != null) {
                NotifyCollectionChangedEventArgs e = new NotifyCollectionChangedEventArgs(action, item, index);
                _collectionChangedHandler(this, e);
            }
        }