PagedDataSource.DataSourceCount Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the number of items in the data source.
public:
property int DataSourceCount { int get(); };
public int DataSourceCount { get; }
member this.DataSourceCount : int
Public ReadOnly Property DataSourceCount As Integer
Property Value
The number of items in the data source.
Exceptions
The data source is not an ICollection implemented object.
Remarks
Use the DataSourceCount property to determine the number of items in the data source. If custom paging or server-side paging is used, the value of the VirtualCount property is returned; otherwise, the total number of items in the data source is returned.
Note
If the DataSource property contains null
, 0 is returned.