ListViewPagedDataSource.DataSourceCount Property

Definition

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 object does not implement the ICollection interface.

Remarks

Use the DataSourceCount property to determine the number of items that are in the data source. If server-based paging is used, the value of the TotalRowCount property is returned; otherwise, the total number of items in the data source is returned.

Note

If the DataSource property is null, 0 is returned.

Applies to

See also