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

ScriptPermissionManager.GlobalInstance Property

Specifies the script security permission level applied to the application.

Namespace: DevExpress.XtraReports.Security

Assembly: DevExpress.XtraReports.v18.2.dll

Declaration

public static ScriptPermissionManager GlobalInstance { get; set; }

Property Value

Type Description
ScriptPermissionManager

A ScriptPermissionManager object.

Remarks

To specify the report script execution mode, register a new instance of the ScriptPermissionManager class at the application startup with the specified mode and assign it to the ScriptPermissionManager.GlobalInstance property.

using DevExpress.XtraReports.Security;
using System;
// ...

protected void Application_Start(object sender, EventArgs e) {
    ScriptPermissionManager.GlobalInstance = new ScriptPermissionManager(ExecutionMode.Deny);
}
See Also