NACLType
Each named ACL belongs to exactly one type. Types are defined as bit flags so that multiple types can be combined with bitwise OR for filtering purposes, such as in GetNamedACLs.
| Name | Description | Value |
|---|---|---|
| NACLTYPE_NONE | None. | 0 |
| NACLTYPE_NORMAL | Normal NACL that the user can select when specifying the permissions of the object, for example. | 1 |
| NACLTYPE_INTERNAL | Internal NACL, used for internal purposes. | 2 |
Runtime Access
This enumeration is available at runtime on the MFiles global object under the VaultEnums namespace. Access enum values using MFiles.VaultEnums.NACLType.<value>.
Example:
const value = MFiles.VaultEnums.NACLType.NACLTYPE_NONE;
See also: MFiles Global Object