1 write to _sort
PresentationFramework (1)
System\Windows\Data\ListCollectionView.cs (1)
2896_sort = descriptions;
11 references to _sort
PresentationFramework (11)
System\Windows\Data\ListCollectionView.cs (11)
389if (_sort == null) 391return _sort; 2419get { return ((_sort != null) && (_sort.Count > 0)); } 2872ActiveComparer = PrepareComparer(_customSort, _sort, static state => (ListCollectionView)state, this); 2891if (_sort != null) 2893((INotifyCollectionChanged)_sort).CollectionChanged -= new NotifyCollectionChangedEventHandler(SortDescriptionsChanged); 2898if (_sort != null) 2900Invariant.Assert(_sort.Count == 0, "must be empty SortDescription collection"); 2901((INotifyCollectionChanged)_sort).CollectionChanged += new NotifyCollectionChangedEventHandler(SortDescriptionsChanged); 2912if (_sort.Count > 0)