C# 클래스 WikiFunctions.RegistryUtils

Provides access to the local computer registry below HKEY_CURRENT_USER\Software\AutoWikiBrowser only
Clients should implement their own error handling
파일 보기 프로젝트 열기: reedy/AutoWikiBrowser

공개 메소드들

메소드 설명
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