3 writes to _totalRowCount
System.Web.Extensions (3)
UI\WebControls\DataPager.cs (3)
369
_totalRowCount
= -1;
384
_totalRowCount
= (int)state[3];
503
_totalRowCount
= e.TotalRowCount;
8 references to _totalRowCount
System.Web.Extensions (8)
UI\WebControls\DataPager.cs (8)
230
return
_totalRowCount
;
267
field.CreateDataPagers(fieldItem, _startRowIndex, _maximumRows,
_totalRowCount
, _fields.IndexOf(field));
507
if (
_totalRowCount
<= _startRowIndex &&
_totalRowCount
> 0) {
516
if (newStartIndex >=
_totalRowCount
) {
565
_totalRowCount
!= -1) {
572
state[3] = (
_totalRowCount
== -1) ? null : (object)
_totalRowCount
;