Click or drag to resize

PermissionBits Enumeration

Permissions as applied by the PackageManager.

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
Members
  Member nameValueDescription
None0User has no permissions for the object.
Read1User has read permission for the object.
Write2User has write permission for the object. Should always be combined with Read, this is for HasPermission tests.
ReadWrite3User has read and write permission for the object.
Delete4User has delete permission for the object. Should be combined with Read|Write.
All7User has read, write, and delete permission for the object.
See Also