5 writes to Sort
System.Data.Common (5)
System\Data\DataView.cs (4)
588Sort = _delayedSort; 996Sort = CreateSortString(property, direction); 1047Sort = string.Empty; 1094Sort = sortString.ToString(); // what if we dont have any valid sort criteira? we would reset the sort
System\Data\LinqDataView.cs (1)
239base.Sort = string.Empty;
13 references to Sort
System.Data.Common (13)
System\Data\DataView.cs (7)
348SetIndex(Sort, RowStateFilter, ((null != value) ? new RowPredicateFilter(value) : null)); 603SetIndex(Sort, RowStateFilter, _rowFilter); 949bool IBindingList.IsSorted => Sort.Length != 0; 1596newIndex = _table.GetIndex(Sort, ((DataViewRowState)_recordStates), GetFilter()); 1755/// <see cref="RowFilter"/> and <see cref="Sort"/> may differ by <see cref="StringComparison.OrdinalIgnoreCase"/>. 1763!string.Equals(Sort, view.Sort, StringComparison.OrdinalIgnoreCase) || // case insensitive
System\Data\LinqDataView.cs (6)
111Debug.Assert(base.Sort != null); 112Debug.Assert(!(!string.IsNullOrEmpty(base.Sort) && base.SortComparison != null), 115if (!string.IsNullOrEmpty(base.Sort)) // use find for DV's sort string 148if (base.SortComparison == null && string.IsNullOrEmpty(base.Sort)) 188if (base.SortComparison == null && string.IsNullOrEmpty(base.Sort)) 281return !(base.SortComparison == null && base.Sort.Length == 0);