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

DashboardConfigurator.VerifyClientTrustLevel Event

Allows you to verify the trust level used to specify which actions a client can initiate to execute them on a server side.

Namespace: DevExpress.DashboardWeb

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

Declaration

public event VerifyClientTrustLevelEventHandler VerifyClientTrustLevel

Event Data

The VerifyClientTrustLevel event's data class is VerifyClientTrustLevelEventArgs. The following properties provide information specific to this event:

Property Description
ClientTrustLevel Gets or sets the trust level that specifies which actions a client can initiate to execute them on a server side.

Remarks

Important

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

Handle the VerifyClientTrustLevel event to prevent inadvertent or unauthorized modifications to dashboards stored on a server. To do this, set the VerifyClientTrustLevelEventArgs.ClientTrustLevel event parameter to ClientTrustLevel.Restricted. Note that this trust level is useful when the ASPxDashboard.WorkingMode/DashboardExtensionSettings.WorkingMode is set to WorkingMode.Viewer.

See Also