Click or drag to resize

RegistrySettings Class

A settings processor that uses the Registry as the backing storage.
Inheritance Hierarchy
SystemObject
  Orthogonal.NSettingsBaseProcessor
    Orthogonal.NSettingsRegistrySettings

Namespace: Orthogonal.NSettings
Assembly: Orthogonal.NSettings (in Orthogonal.NSettings.dll) Version: 3.0.5
Syntax
C#
public class RegistrySettings : BaseProcessor

The RegistrySettings type exposes the following members.

Constructors
 NameDescription
Public methodRegistrySettings

Constructs a settings processor under a key in the HKEY_CURRENT_USER Registry hive. The full registry key path is constructed by joining and appending the company, product and version values to create a key that follows common naming conventions for application Registry usage. The full key path format is HKEY_CURRENT_USER\Software\company\product x.y where x and y are the major and minor version numbers.

The company, product and version numbers are taken from the entry assembly's attributes, the executing assembly's attributes, or the calling assembly's attributes in that priority order.

Public methodRegistrySettings(String, String, String) Constructs a settings processor under a key in the HKEY_CURRENT_USER Registry hive. The full registry key path is constructed by joining and appending the company, product and version values to create a key that follows common naming conventions for application Registry usage. The full key path format is HKEY_CURRENT_USER\Software\company\product x.y where x and y are the major and minor version numbers.
Top
See Also