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

SecuritySystem.Demand(IPermissionRequest) Method

Throws a SecurityException exception when the current user is allowed to execute a particular secured operation.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public static void Demand(
    IPermissionRequest permissionRequest
)

Parameters

Name Type Description
permissionRequest IPermissionRequest

An IPermissionRequest object that specifies the secured operation.

Remarks

The passed Permission Request should have an appropriate Permission Request Processor registered within Security Strategy. To register a Permission Request, handle the SecurityStrategy.CustomizeRequestProcessors event. Refer to the How to: Implement Custom Security Objects (Users, Roles, Operation Permissions) topic to see an example.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Demand(IPermissionRequest) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also