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

RaiseCollectionReset() private method

private RaiseCollectionReset ( ) : void
return void
        private void RaiseCollectionReset()
        {
            if (_collectionChangedHandler != null) {
                NotifyCollectionChangedEventArgs e = new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset);
                _collectionChangedHandler(this, e);
            }
        }