Click or drag to resize
RegistryViews Enumeration
Windows registry views (requires .NET Framework 4.0 and later)

Namespace: com.softwarekey.Client.Utils
Assembly: PLUSManaged (in PLUSManaged.dll) Version: 5.23.4.0
Syntax
public enum RegistryViews
Members
  Member nameValueDescription
DefaultView0The 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.
Use32BitView1Force 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.
Use64BitView2Force 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