RegistryKey.Name Property
.NET Framework (current version)
![]() |
---|
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience. |
Retrieves the name of the key.
Assembly: mscorlib (in mscorlib.dll)
Exception | Condition |
---|---|
ObjectDisposedException | The RegistryKey is closed (closed keys cannot be accessed). |
The name of the key includes the absolute path of this key in the registry, always starting at a base key, for example, HKEY_LOCAL_MACHINE.
This code example is part of a larger example provided for the RegistryKey class.
// Delete or close the new subkey. Console.Write("\nDelete newly created registry key? (Y/N) "); if(Char.ToUpper(Convert.ToChar(Console.Read())) == 'Y') { Registry.CurrentUser.DeleteSubKeyTree("Test9999"); Console.WriteLine("\nRegistry key {0} deleted.", test9999.Name); } else { Console.WriteLine("\nRegistry key {0} closed.", test9999.ToString()); test9999.Close(); }
.NET Framework
Available since 1.1
Available since 1.1
Show: