14 writes to TotalRowCount
System.Web (12)
UI\WebControls\ModelDataSourceView.cs (3)
465
arguments.
TotalRowCount
= (int)countHelperMethod.Invoke(null, new object[] { result.ReturnValue });
480
arguments.
TotalRowCount
= (int)result.OutputParameters[TotalRowCountParameterName];
761
arguments.
TotalRowCount
= selectResult.TotalRowCount;
UI\WebControls\ObjectDataSourceView.cs (9)
797
arguments.
TotalRowCount
= collection.Count;
806
arguments.
TotalRowCount
= 1;
1011
arguments.
TotalRowCount
= dataView.Count;
1112
arguments.
TotalRowCount
= cachedTotalRowCount;
1117
arguments.
TotalRowCount
= cachedTotalRowCount;
1137
arguments.
TotalRowCount
= dataView.Count;
1163
arguments.
TotalRowCount
= dataTable.Rows.Count;
1918
arguments.
TotalRowCount
= cachedTotalRowCount;
1924
arguments.
TotalRowCount
= cachedTotalRowCount;
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceView.cs (1)
354
arguments.
TotalRowCount
= totalRowCount;
System.Web.Extensions (1)
UI\WebControls\QueryableDataSourceView.cs (1)
459
context.Arguments.
TotalRowCount
= _queryable.Count(source);
9 references to TotalRowCount
System.Web (6)
UI\DataSourceSelectArguments.cs (1)
176
(arguments.
TotalRowCount
== _totalRowCount));
UI\WebControls\DetailsView.cs (1)
1567
pagedDataSource = CreateServerPagedDataSource(arguments.
TotalRowCount
);
UI\WebControls\FormView.cs (1)
1342
pagedDataSource = CreateServerPagedDataSource(arguments.
TotalRowCount
);
UI\WebControls\GridView.cs (1)
1951
pagedDataSource = CreateServerPagedDataSource(arguments.
TotalRowCount
);
UI\WebControls\ObjectDataSourceView.cs (2)
1976
if (totalRowCount != arguments.
TotalRowCount
) {
1977
_owner.SaveTotalRowCountToCache(arguments.
TotalRowCount
);
System.Web.Extensions (3)
UI\WebControls\LinqDataSourceView.cs (1)
557
totalRowCount = arguments.
TotalRowCount
;
UI\WebControls\ListView.cs (1)
1473
totalRowCount = arguments.
TotalRowCount
;
UI\WebControls\QueryableDataSourceView.cs (1)
467
else if (context.Arguments.RetrieveTotalRowCount && (context.Arguments.
TotalRowCount
== -1)) {