Skip to main content
.NET 6.0+

SecuritySystem Class

The static class that defines the XAF security system.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public static class SecuritySystem

Remarks

The SecuritySystem class provides the methods that implement the basic security system functionality. When the current end-user tries to access an object, the security system is asked whether there’s permission to do it. It is assumed that end-users differ from one another by their type, which means that they have a different permission set. Based on that, the SecuritySystem allows the following:

Tip

You can also use the IsGrantedExtensions class methods to check whether or not the user has permissions to access a particular object. These methods do not require an IPermissionRequest object.

The XAF enables you to use different Security Strategies. The SecuritySystem actually delegates its functionality to the currently used Strategy. For instance, when you call the Security System’s Demand method, the Security Strategy’s Demand method is actually invoked. This allows you to implement business application features independent of the current Security Strategy, using only the Security System’s methods and properties.

Inheritance

Object
SecuritySystem
See Also