10 writes to Sort
System.Data (4)
fx\src\data\System\Data\DataView.cs (4)
647
Sort
= delayedSort;
1082
this.
Sort
= CreateSortString(property, direction);
1121
this.
Sort
= string.Empty;
1154
this.
Sort
= sortString.ToString(); // what if we dont have any valid sort criteira? we would reset the sort
System.Data.DataSetExtensions (1)
System\Data\LinqDataView.cs (1)
256
base.
Sort
= String.Empty;
System.Web (5)
UI\TraceContext.cs (3)
174
_requestData.Tables[SR.Trace_Trace_Information].DefaultView.
Sort
= SR.Trace_Category;
176
_requestData.Tables[SR.Trace_Trace_Information].DefaultView.
Sort
= SR.Trace_From_First;
785
requestData.Tables[SR.Trace_Trace_Information].DefaultView.
Sort
= SR.Trace_Category;
UI\WebControls\FilteredDataSetHelper.cs (1)
29
dv.
Sort
= sortExpression;
UI\WebControls\ObjectDataSourceView.cs (1)
1149
dataView.
Sort
= arguments.SortExpression;
15 references to Sort
System.Data (9)
fx\src\data\System\Data\DataView.cs (9)
389
SetIndex(
Sort
, RowStateFilter, ((null != value) ? new RowPredicateFilter(value) : null));
503
/// Resets the <see cref='System.Data.DataView.
Sort
'/> property to its default state.
514
/// Indicates whether the <see cref='System.Data.DataView.
Sort
'/> property should be persisted.
660
SetIndex(
Sort
, RowStateFilter, rowFilter);
1014
get { return this.
Sort
.Length != 0; }
1599
newIndex = table.GetIndex(
Sort
, ((DataViewRowState)(int)recordStates), GetFilter());
1743
/// <see cref="RowFilter"/> and <see cref="
Sort
"/> may differ by <see cref="StringComparison.OrdinalIgnoreCase"/>.
1750
(string.Compare(this.
Sort
, view.
Sort
, StringComparison.OrdinalIgnoreCase) != 0) || // case insensitive
System.Data.DataSetExtensions (6)
System\Data\LinqDataView.cs (6)
126
Debug.Assert(base.
Sort
!= null);
127
Debug.Assert(!(!String.IsNullOrEmpty(base.
Sort
) && base.SortComparison != null));
130
if (!String.IsNullOrEmpty(base.
Sort
)) //use find for DV's sort string
164
if (base.SortComparison == null && String.IsNullOrEmpty(base.
Sort
))
202
if (base.SortComparison == null && String.IsNullOrEmpty(base.
Sort
))
298
return !(base.SortComparison == null && base.
Sort
.Length == 0);