RegistryViews Enumeration |
Windows registry views (requires .NET Framework 4.0 and later)
Namespace: com.softwarekey.Client.UtilsAssembly: PLUSManaged (in PLUSManaged.dll) Version: 5.23.4.0
Syntax public enum RegistryViews
Public Enumeration RegistryViews
public enum class RegistryViews
Members
| Member name | Value | Description |
---|
| DefaultView | 0 | The default registry view. If your code is running as a 32 bit program, then it will use 32 bit registry locations. If your code is running as a 64 bit program, then it will use 64 bit registry locations. |
| Use32BitView | 1 | Force the use of the 32 bit registry view (requires the application to target .NET 4.0 Framework or later). This can be used to force a 64 bit application to use 32 bit registry locations. |
| Use64BitView | 2 | Force the use of the 64 bit registry view (requires the application to target .NET 4.0 Framework or later, and a 64 bit Windows). This can be used to force a 32 bit application to use 64 bit registry locations. |
See Also