mscorlib(4.0.0.0) API with additions
RegistryRights.cs
2 {
4  [Flags]
5  public enum RegistryRights
6  {
8  QueryValues = 0x1,
10  SetValue = 0x2,
12  CreateSubKey = 0x4,
14  EnumerateSubKeys = 0x8,
16  Notify = 0x10,
18  CreateLink = 0x20,
20  ExecuteKey = 0x20019,
22  ReadKey = 0x20019,
24  WriteKey = 0x20006,
26  Delete = 0x10000,
28  ReadPermissions = 0x20000,
30  ChangePermissions = 0x40000,
32  TakeOwnership = 0x80000,
34  FullControl = 0xF003F
35  }
36 }
The right to query the name/value pairs in a registry key, to request notification of changes,...
The right to list the subkeys of a registry key.
The right to request notification of changes on a registry key.
RegistryRights
Specifies the access control rights that can be applied to registry objects.
The right to create, delete, or set name/value pairs in a registry key.
The right to query the name/value pairs in a registry key.
Same as F:System.Security.AccessControl.RegistryRights.ReadKey.
The right to create, delete, and set the name/value pairs in a registry key, to create or delete subk...
The DEL (DELETE) key.
The right to create subkeys of a registry key.