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