AceType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the available access control entry (ACE) types.
public enum class AceType
public enum AceType
type AceType =
Public Enum AceType
- Inheritance
Fields
Name | Value | Description |
---|---|---|
AccessAllowed | 0 | Allows access to an object for a specific trustee identified by an IdentityReference object. |
AccessDenied | 1 | Denies access to an object for a specific trustee identified by an IdentityReference object. |
SystemAudit | 2 | Causes an audit message to be logged when a specified trustee attempts to gain access to an object. The trustee is identified by an IdentityReference object. |
SystemAlarm | 3 | Reserved for future use. |
AccessAllowedCompound | 4 | Defined but never used. Included here for completeness. |
AccessAllowedObject | 5 | Allows access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an IdentityReference object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. |
AccessDeniedObject | 6 | Denies access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an IdentityReference object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. |
SystemAuditObject | 7 | Causes an audit message to be logged when a specified trustee attempts to gain access to an object or subobjects such as property sets or properties. The ACE contains a set of access rights, a GUID that identifies the type of object or subobject, and an IdentityReference object that identifies the trustee for whom the system will audit access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. |
SystemAlarmObject | 8 | Reserved for future use. |
AccessAllowedCallback | 9 | Allows access to an object for a specific trustee identified by an IdentityReference object. This ACE type may contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted. |
AccessDeniedCallback | 10 | Denies access to an object for a specific trustee identified by an IdentityReference object. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted. |
AccessAllowedCallbackObject | 11 | Allows access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an IdentityReference object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type may contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted. |
AccessDeniedCallbackObject | 12 | Denies access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an IdentityReference object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted. |
SystemAuditCallback | 13 | Causes an audit message to be logged when a specified trustee attempts to gain access to an object. The trustee is identified by an IdentityReference object. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted. |
SystemAlarmCallback | 14 | Reserved for future use. |
SystemAuditCallbackObject | 15 | Causes an audit message to be logged when a specified trustee attempts to gain access to an object or subobjects such as property sets or properties. The ACE contains a set of access rights, a GUID that identifies the type of object or subobject, and an IdentityReference object that identifies the trustee for whom the system will audit access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted. |
MaxDefinedAceType | 16 | Tracks the maximum defined ACE type in the enumeration. |
SystemAlarmCallbackObject | 16 | Reserved for future use. |
Remarks
MaxDefinedAceType is the largest currently defined ACE type. Custom ACE types must be defined to have values larger than MaxDefinedAceType.