Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

RegistryPermission Constructor (RegistryPermissionAccess, AccessControlActions, String^)

 

Initializes a new instance of the RegistryPermission class with the specified access to the specified registry variables and the specified access rights to registry control information.

Namespace:   System.Security.Permissions
Assembly:  mscorlib (in mscorlib.dll)

public:
RegistryPermission(
	RegistryPermissionAccess access,
	AccessControlActions control,
	String^ pathList
)

Parameters

access
Type: System.Security.Permissions::RegistryPermissionAccess

One of the RegistryPermissionAccess values.

control
Type: System.Security.AccessControl::AccessControlActions

A bitwise combination of the AccessControlActions values.

pathList
Type: System::String^

A list of registry variables (semicolon-separated) to which access is granted.

Exception Condition
ArgumentException

The access parameter is not a valid value of RegistryPermissionAccess.

-or-

The pathList parameter is not a valid string.

This constructor allows only one of the RegistryPermissionAccess values to be specified. This access applies to all listed registry variables. Use AddPathList to define more complicated permissions.

The control parameter specifies whether the access control list (ACL) for the registry keys specified by pathList can be changed, viewed, or cannot be accessed.

System_CAPS_importantImportant

An access control list (ACL) describes individuals or groups who have, or do not have, rights to specific actions on the specified registry keys. The ability to change or view an ACL is an important permission and should be granted with caution.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft