C# Класс ZForge.Win32.FileAssociation.RegistryWrapper

Provides a streamlined interface for reading and writing to the registry.
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

Delete() публичный Метод

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
Результат void

Read() публичный Метод

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.
Результат object

Write() публичный Метод

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
Результат void