1 write to _sort
PresentationFramework (1)
System\Windows\Data\ListCollectionView.cs (1)
2915_sort = descriptions;
11 references to _sort
PresentationFramework (11)
System\Windows\Data\ListCollectionView.cs (11)
390if (_sort == null) 392return _sort; 2438get { return ((_sort != null) && (_sort.Count > 0)); } 2891ActiveComparer = PrepareComparer(_customSort, _sort, static state => (ListCollectionView)state, this); 2910if (_sort != null) 2912((INotifyCollectionChanged)_sort).CollectionChanged -= new NotifyCollectionChangedEventHandler(SortDescriptionsChanged); 2917if (_sort != null) 2919Invariant.Assert(_sort.Count == 0, "must be empty SortDescription collection"); 2920((INotifyCollectionChanged)_sort).CollectionChanged += new NotifyCollectionChangedEventHandler(SortDescriptionsChanged); 2931if (_sort.Count > 0)