RegistryKey::GetAccessControl Method ()
.NET Framework (current version)
Returns the access control security for the current registry key.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.Security.AccessControl::RegistrySecurity^An object that describes the access control permissions on the registry key represented by the current RegistryKey.
| Exception | Condition |
|---|---|
| SecurityException | The user does not have the necessary permissions. |
| ObjectDisposedException | The RegistryKey being manipulated is closed (closed keys cannot be accessed). |
| InvalidOperationException | The current key has been deleted. |
This method overload is equivalent to calling the GetAccessControl(AccessControlSections) method overload with the bitwise combination of the following flags: AccessControlSections::Access, AccessControlSections::Owner, and AccessControlSections::Group. You can use that overload to search for other permissions.
The user must have RegistryRights::ReadPermissions rights to call this method.
.NET Framework
Available since 2.0
Available since 2.0
Show: