Skip to main content

WebDashboardExporter(DashboardConfigurator) Constructor

Initializes a new instance of the WebDashboardExporter class for the specified DashboardConfigurator instance.

Namespace: DevExpress.DashboardWeb

Assembly: DevExpress.Dashboard.v24.2.Web.dll

NuGet Package: DevExpress.Web.Dashboard.Common

#Declaration

public WebDashboardExporter(
    DashboardConfigurator dashboardConfigurator
)

#Parameters

Name Type Description
dashboardConfigurator DashboardConfigurator

A DashboardConfigurator instance that provides server settings for the Web Dashboard.

#Remarks

If you are using the DashboardConfigurator‘s API for the ASPxDashboard control or ASP.NET MVC Dashboard extension, pass the DashboardConfigurator‘s default instance to the WebDashboardExporter constructor.

using DevExpress.DashboardWeb;
//...            
WebDashboardExporter exporter = new WebDashboardExporter(DashboardConfigurator.Default);
See Also