Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

PermissionsReloadMode Enum

Contains values specifying the modes of reloading the security permissions used by Security Adapters.

Namespace: DevExpress.ExpressApp.Security

Assembly: DevExpress.ExpressApp.Security.v20.2.dll

Declaration

public enum PermissionsReloadMode

Members

Name Description
NoCache

Each Session (in XPO) or DBContext (in Entity Framework) operates with the most recent permissions loaded from the database.

CacheOnFirstAccess

Permissions are loaded and cached when the corresponding secured data is accessed for the first time. Cached permissions are used until the user is logged off. This mode significantly reduces the number of database requests when working with secured data.

Remarks

These enumeration values are used to set the PermissionsReloadMode property.

See Also