RegistryPermissionAccess Enumeration
Specifies the permitted access to registry keys and values.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
| AllAccess | Create, Read, and Write access to registry variables. AllAccess represents multiple RegistryPermissionAccess values and causes an ArgumentException when used as the access parameter for the GetPathList method, which expects a single value. | |
| Create | Create access to registry variables. | |
| NoAccess | No access to registry variables. NoAccess represents no valid RegistryPermissionAccess values and causes an ArgumentException when used as the parameter for GetPathList, which expects a single value. | |
| Read | Read access to registry variables. | |
| Write | Write access to registry variables. |
RegistryPermissionAccess values are independent; rights to one type of access do not imply rights to another. For instance, Write permission does not imply permission to Read or Create.
Note |
|---|
Although NoAccess and AllAccess appear in RegistryPermissionAccess, they are not valid for use as the parameter for GetPathList because they describe no registry variable access types or all registry variable access types, respectively, and GetPathList expects a single registry variable access type. |
Available since 1.1
