1 write to _dataSource
System.Web.Extensions (1)
UI\WebControls\ListViewPagedDataSource.cs (1)
90
_dataSource
= value;
17 references to _dataSource
System.Web.Extensions (17)
UI\WebControls\ListViewPagedDataSource.cs (17)
59
if (
_dataSource
== null)
87
return
_dataSource
;
99
if (
_dataSource
== null)
105
if (
_dataSource
is ICollection) {
106
return ((ICollection)
_dataSource
).Count;
216
if (
_dataSource
is ICollection) {
220
if (
_dataSource
is IList) {
221
return new EnumeratorOnIList((IList)
_dataSource
, startRowIndex, count);
223
else if (
_dataSource
is Array) {
224
return new EnumeratorOnArray((object[])
_dataSource
, startRowIndex, count);
226
else if (
_dataSource
is ICollection) {
227
return new EnumeratorOnICollection((ICollection)
_dataSource
, startRowIndex, count);
236
return new EnumeratorOnIEnumerator(
_dataSource
.GetEnumerator(), Count);
241
return
_dataSource
.GetEnumerator();
251
if (
_dataSource
== null)
254
if (
_dataSource
is ITypedList) {
255
return ((ITypedList)
_dataSource
).GetItemProperties(listAccessors);