Table of Contents

Enum ActiveDirectoryRights

Namespace
CENTREL.XIA.Configuration.Types
Assembly
CENTREL.XIA.Configuration.Types.dll

Represents the rights that can be assigned to an Active Directory access rule.

[Flags]
[TypeConverter(typeof(GlobalizedEnumConverter))]
public enum ActiveDirectoryRights

Fields

AccessSystemSecurity = 16777216

The right to get or set the SACL in the object security descriptor.

CreateChild = 1

The right to create children of the object.

Delete = 65536

The right to delete the object.

DeleteChild = 2

The right to delete children of the object.

DeleteTree = 64

The right to delete all children of this object, regardless of the permissions of the children.

ExtendedRight = 256

A customized control access right. For a list of possible extended rights,see the topic "Extended Rights" in the MSDN Library at http://msdn.microsoft.com. For more information about extended rights, see the topic "Control Access Rights" in the MSDN Library at http://msdn.microsoft.com.

GenericAll = CreateChild | DeleteChild | Write | DeleteTree | ExtendedRight | Delete | GenericRead | WriteDacl | WriteOwner

The right to create or delete children, delete a subtree, read and write properties, examine children and the object itself, add and remove the object from the directory, and read or write with an extended right.

GenericExecute = ListChildren | ReadControl

The right to read permissions on, and list the contents of, a container object.

GenericRead = ListObject | Read

The right to read permissions on this object, read all the properties on this object, list this object name when the parent container is listed, and list the contents of this object if it is a container.

GenericWrite = Write | ReadControl

The right to read permissions on this object, write all the properties on this object, and perform all validated writes to this object.

ListChildren = 4

The right to list children of this object. For more information about this right, see the topic "Controlling Object Visibility" in the MSDN Library http://msdn.microsoft.com/library.

ListObject = 128

The right to list a particular object. For more information about this right, see the topic "Controlling Object Visibility" in the MSDN Library at http://msdn.microsoft.com/library.

Read = ReadProperty | GenericExecute

CENTREL: the general read permission. This is the combination of the "GenericExecute" and "ReadProperty" permissions.

ReadControl = 131072

The right to read data from the security descriptor of the object, not including the data in the SACL.

ReadProperty = 16

The right to read properties of the object.

Self = 8

The right to perform an operation that is controlled by a validated write access right.

Synchronize = 1048576

The right to use the object for synchronization. This right enables a thread to wait until that object is in the signaled state.

Unknown = 0

The right is unknown.

Write = Self | WriteProperty

CENTREL: The user is granted write access, this is the combination of the "WriteProperty" and "Self" values.

WriteDacl = 262144

The right to modify the DACL in the object security descriptor.

WriteOwner = 524288

The right to assume ownership of the object. The user must be an object trustee. The user cannot transfer the ownership to other users.

WriteProperty = 32

The right to write properties of the object.