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)
59if (_dataSource == null) 87return _dataSource; 99if (_dataSource == null) 105if (_dataSource is ICollection) { 106return ((ICollection)_dataSource).Count; 216if (_dataSource is ICollection) { 220if (_dataSource is IList) { 221return new EnumeratorOnIList((IList)_dataSource, startRowIndex, count); 223else if (_dataSource is Array) { 224return new EnumeratorOnArray((object[])_dataSource, startRowIndex, count); 226else if (_dataSource is ICollection) { 227return new EnumeratorOnICollection((ICollection)_dataSource, startRowIndex, count); 236return new EnumeratorOnIEnumerator(_dataSource.GetEnumerator(), Count); 241return _dataSource.GetEnumerator(); 251if (_dataSource == null) 254if (_dataSource is ITypedList) { 255return ((ITypedList)_dataSource).GetItemProperties(listAccessors);