2 writes to _totalRowCount
System.Web.Extensions (2)
UI\WebControls\ListView.cs (2)
1539
_totalRowCount
= usePaging ? pagedDataSource.DataSourceCount : _itemList.Count;
2709
_totalRowCount
= (int)state[8];
8 references to _totalRowCount
System.Web.Extensions (8)
UI\WebControls\ListView.cs (8)
1540
OnTotalRowCountAvailable(new PageEventArgs(_startRowIndex, _maximumRows,
_totalRowCount
));
1556
return
_totalRowCount
;
2252
if ((
_totalRowCount
> 0) &&
2254
(_deletedItemIndex + _startRowIndex ==
_totalRowCount
)) {
2742
OnTotalRowCountAvailable(new PageEventArgs(_startRowIndex, _maximumRows,
_totalRowCount
));
3213
_totalRowCount
!= -1 ||
3227
state[8] = (
_totalRowCount
== -1) ? null : (object)
_totalRowCount
;