Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ScriptSecurityPermission Class

A security permission applied during execution of report scripts.

Namespace: DevExpress.XtraReports

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public class ScriptSecurityPermission

The following members return ScriptSecurityPermission objects:

#Remarks

We recommend that you specify permissions globally for the entire application.

The ScriptSecurityPermission.Name property identifies the class name of a security permission (a CodeAccessPermission descendant), and the ScriptSecurityPermission.Deny property specifies whether the execution of such scripts is allowed or denied.

You can add any security permission which is a descendant of the CodeAccessPermission class, or inherit from the ScriptSecurityPermission class and implement a custom security permission. In this case, the library containing this security permission should be added to the References list of your application.

Important

To apply restrictions, it is required to enable the code access security (CAS) policy in the application’s configuration file.

To learn more, see Scripting Security.

#Inheritance

Object
ScriptSecurityPermission
See Also