C# Класс WikiFunctions.RegistryUtils

Provides access to the local computer registry below HKEY_CURRENT_USER\Software\AutoWikiBrowser only
Clients should implement their own error handling
Показать файл Открыть проект

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

Метод Описание
DeleteSubKey ( string keyNameSuffix ) : void

Deletes a sub key

DeleteSubKey ( string keyNameSuffix, bool throwOnMissingSubKey ) : void

Deletes a sub key

GetValue ( string keyNameSuffix, object defaultValue ) : string

Gets a string value from an AWB registry subkey

GetWritableKey ( string keyNameSuffix ) : RegistryKey

Opens or creates a writable registry key from the AWB registry area

OpenSubKey ( string keyNameSuffix ) : RegistryKey

Opens a read-only registry key from the AWB registry area

SetValue ( string keyNameSuffix, string valueName, string value ) : void

Writes a string value to an AWB registry subkey

Приватные методы

Метод Описание
BuildKeyName ( string keyNameSuffix ) : string

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

DeleteSubKey() публичный статический Метод

Deletes a sub key
public static DeleteSubKey ( string keyNameSuffix ) : void
keyNameSuffix string
Результат void

DeleteSubKey() публичный статический Метод

Deletes a sub key
public static DeleteSubKey ( string keyNameSuffix, bool throwOnMissingSubKey ) : void
keyNameSuffix string
throwOnMissingSubKey bool
Результат void

GetValue() публичный статический Метод

Gets a string value from an AWB registry subkey
public static GetValue ( string keyNameSuffix, object defaultValue ) : string
keyNameSuffix string
defaultValue object
Результат string

GetWritableKey() публичный статический Метод

Opens or creates a writable registry key from the AWB registry area
public static GetWritableKey ( string keyNameSuffix ) : RegistryKey
keyNameSuffix string
Результат Microsoft.Win32.RegistryKey

OpenSubKey() публичный статический Метод

Opens a read-only registry key from the AWB registry area
public static OpenSubKey ( string keyNameSuffix ) : RegistryKey
keyNameSuffix string
Результат Microsoft.Win32.RegistryKey

SetValue() публичный статический Метод

Writes a string value to an AWB registry subkey
public static SetValue ( string keyNameSuffix, string valueName, string value ) : void
keyNameSuffix string
valueName string
value string
Результат void