Skip to main content
A newer version of this page is available. .

DashboardConfigurator.PassCredentials Property

Gets or sets whether confidential information (such as user credentials) will be passed to the client side (web browser).

Namespace: DevExpress.DashboardWeb

Assembly: DevExpress.Dashboard.v19.1.Web.dll

Declaration

public static bool PassCredentials { get; set; }

Property Value

Type Description
Boolean

true, to pass confidential information to the client side; otherwise, false.

Remarks

Important

To learn how to use the DashboardConfigurator‘s API, see the Server-Side API Overview topic.

The Web Dashboard allows you to use various types of data sources (for instance, DashboardSqlDataSource or DashboardOlapDataSource) whose connection parameters can contain confidential information such as user credentials. You can set whether this information will be passed to the client side (web browser) using the boolean PassCredentials property. To avoid any security issues, we recommend setting this property to false and providing connection parameters in one of the following ways.

See Also