PermissionBits Enumeration |
Namespace:
NetQuarry.Security.Package
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum PermissionBits
<FlagsAttribute>
Public Enumeration PermissionBits
Members
| Member name | Value | Description |
---|
| None | 0 | User has no permissions for the object. |
| Read | 1 | User has read permission for the object. |
| Write | 2 | User has write permission for the object. Should always be combined with Read, this is for HasPermission tests. |
| ReadWrite | 3 | User has read and write permission for the object. |
| Delete | 4 | User has delete permission for the object. Should be combined with Read|Write. |
| All | 7 | User has read, write, and delete permission for the object. |
See Also