StandardAccessRights Enumeration
Specifies the access rights that correspond to operations specific to a standard object type.
Namespace: DevCase.Win32.EnumsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[FlagsAttribute]
public enum StandardAccessRights
<FlagsAttribute>
Public Enumeration StandardAccessRights
Dim instance As StandardAccessRights
[FlagsAttribute]
public enum class StandardAccessRights
[<FlagsAttribute>]
type StandardAccessRights
No code example is currently available or this language may not be supported.
Delete |
65,536 |
The right to delete the object.
|
ReadControl |
131,072 |
The right to read the information in the object's security descriptor,
not including the information in the system access control list (SACL).
|
StandardRightsRead |
131,072 |
Same as ReadControl.
|
StandardRightsWrite |
131,072 |
Same as ReadControl.
|
StandardRightsExecute |
131,072 |
Same as ReadControl.
|
WriteDac |
262,144 |
The right to modify the discretionary access control list (DACL) in the object's security descriptor.
|
WriteOwner |
524,288 |
The right to change the owner in the object's security descriptor.
|
StandardRightsRequired |
983,040 |
Combines Delete,
ReadControl, WriteDac, and
WriteOwner access.
|
Synchronize |
1,048,576 |
The right to use the object for synchronization.
This enables a thread to wait until the object is in the signaled state.
Some object types do not support this access right.
|
StandardRightsAll |
2,031,616 |
Combines Delete,
ReadControl, WriteDac,
WriteOwner, and Synchronize access.
|