RegistryKey.DeleteSubKey Method (String, Boolean)
Deletes the specified subkey, and specifies whether an exception is raised if the subkey is not found.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Sub DeleteSubKey ( _ subkey As String, _ throwOnMissingSubKey As Boolean _ )
Parameters
- subkey
- Type: System.String
The name of the subkey to delete. This string is not case-sensitive.
- throwOnMissingSubKey
- Type: System.Boolean
Indicates whether an exception should be raised if the specified subkey cannot be found. If this argument is true and the specified subkey does not exist, an exception is raised. If this argument is false and the specified subkey does not exist, no action is taken.
| Exception | Condition |
|---|---|
| InvalidOperationException | subkey has child subkeys. |
| ArgumentException | subkey does not specify a valid registry key, and throwOnMissingSubKey is true. |
| ArgumentNullException | subkey is Nothing. |
| SecurityException | The user does not have the permissions required to delete the key. |
| ObjectDisposedException | The RegistryKey being manipulated is closed (closed keys cannot be accessed). |
| UnauthorizedAccessException | The user does not have the necessary registry rights. |
- RegistryPermission
for the ability to modify the specified registry key. Associated enumeration: RegistryPermissionAccess.Write
- SecurityPermission
for the ability to access the specified registry key if it is a remote key. Associated enumeration: SecurityPermissionFlag.UnmanagedCode
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.