1 write to dataSource
System.Web (1)
UI\WebControls\PagedDataSource.cs (1)
134dataSource = value;
19 references to dataSource
System.Web (19)
UI\WebControls\PagedDataSource.cs (19)
90if (dataSource == null) 131return dataSource; 143if (dataSource == null) 149if (dataSource is ICollection) { 150return ((ICollection)dataSource).Count; 166if ((dataSource == null) || (IsPagingEnabled == false)) { 256if (dataSource == null) 320if (dataSource is ICollection) { 324if (dataSource is IList) { 325return new EnumeratorOnIList((IList)dataSource, startIndex, count); 327else if (dataSource is Array) { 328return new EnumeratorOnArray((object[])dataSource, startIndex, count); 330else if (dataSource is ICollection) { 331return new EnumeratorOnICollection((ICollection)dataSource, startIndex, count); 340return new EnumeratorOnIEnumerator(dataSource.GetEnumerator(), Count); 345return dataSource.GetEnumerator(); 354if (dataSource == null) 357if (dataSource is ITypedList) { 358return((ITypedList)dataSource).GetItemProperties(listAccessors);