IsGrantedExtensions.CanDelete<T>(SecurityStrategy, IObjectSpace) Method
In This Article
Checks whether the current user can delete objects of the specified type.
Namespace: DevExpress.ExpressApp.Security
Assembly: DevExpress.ExpressApp.Security.v24.2.dll
NuGet Package: DevExpress.ExpressApp.Security
#Declaration
public static bool CanDelete<T>(
this SecurityStrategy security,
IObjectSpace objectSpace
)
#Parameters
Name | Type | Description |
---|---|---|
security | Security |
A Security |
object |
IObject |
An Object Space this method uses to get an object to check. |
#Type Parameters
Name | Description |
---|---|
T | A Type of objects this method checks. |
#Returns
Type | Description |
---|---|
Boolean |
|
#Remarks
The following example shows how to use this method.
using DevExpress.ExpressApp;
using DevExpress.ExpressApp.Security;
// ...
public class CheckDeletePermissionController : ObjectViewController<ListView, Contact> {
protected override void OnActivated() {
base.OnActivated();
SecurityStrategy securityStrategy = Application.GetSecurityStrategy();
if (!securityStrategy.CanDelete<Department>(ObjectSpace)) {
// ...
}
}
}
See Also