C# Class ZForge.Win32.FileAssociation.RegistryWrapper

Provides a streamlined interface for reading and writing to the registry.
Afficher le fichier Open project: zhuangyy/Motion

Méthodes publiques

Méthode Description
Delete ( string path, string valueName ) : void

Deletes specified value;

Read ( string path, string valueName ) : object

Reads specified value from the registry.

Write ( string path, string valueName, object value ) : void

Writes specified value to the registry.

Method Details

Delete() public méthode

Deletes specified value;
public Delete ( string path, string valueName ) : void
path string Full registry key (minus root) that contains the value to be deleted.
valueName string Name of value to be deleted
Résultat void

Read() public méthode

Reads specified value from the registry.
public Read ( string path, string valueName ) : object
path string Full registry key (minus root) that contains value.
valueName string Name of the value within key that will be read.
Résultat object

Write() public méthode

Writes specified value to the registry.
public Write ( string path, string valueName, object value ) : void
path string Full registry key (minus root) that will contain the value.
valueName string Name of the value within key that will be written.
value object Value to be written
Résultat void