C# Класс Disco.ClientBootstrapper.Interop.RegistryUtilities

Показать файл Открыть проект

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

Метод Описание
CopyKey ( RegistryKey parentKey, string keyNameToCopy, string newKeyName ) : bool

Copy a registry key. The parentKey must be writeable.

RenameSubKey ( RegistryKey parentKey, string subKeyName, string newSubKeyName ) : bool

Renames a subkey of the passed in registry key since the Framework totally forgot to include such a handy feature.

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

Метод Описание
RecurseCopyKey ( RegistryKey sourceKey, RegistryKey destinationKey ) : void

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

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

Copy a registry key. The parentKey must be writeable.
public static CopyKey ( RegistryKey parentKey, string keyNameToCopy, string newKeyName ) : bool
parentKey Microsoft.Win32.RegistryKey
keyNameToCopy string
newKeyName string
Результат bool

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

Renames a subkey of the passed in registry key since the Framework totally forgot to include such a handy feature.
public static RenameSubKey ( RegistryKey parentKey, string subKeyName, string newSubKeyName ) : bool
parentKey Microsoft.Win32.RegistryKey
subKeyName string The name of the subkey that you want to rename ///
newSubKeyName string The new name of the RegistryKey
Результат bool