Gets information about dashboards stored in the current IDashboardStorage.
Namespace: DevExpress.DashboardWeb
Assembly: DevExpress.Dashboard.v18.2.Web.dll
IEnumerable<DashboardInfo> GetAvailableDashboardsInfo()
Function GetAvailableDashboardsInfo As IEnumerable(Of DashboardInfo)
Type | Description |
---|---|
IEnumerable<DashboardInfo> | A collection of DashboardInfo objects that contain information about dashboards stored in the current IDashboardStorage. |
The code snippet below shows how to get info about dashboards located in the dashboard file storage.
IDashboardStorage storage = new DashboardFileStorage("App_Data\\Dashboards");
var dashboardList = storage.GetAvailableDashboardsInfo();