C# Класс WixSharp.RegValue

Defines registry value to be installed.
Наследование: WixEntity
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
Condition Condition
Feature Feature
ForceCreateOnInstall bool
ForceDeleteOnUninstall bool
Key string
RegistryKeyAction RegistryKeyAction
Root RegistryHive
Value object
Win64 bool

Private Properties

Свойство Тип Описание

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

Метод Описание
RegValue ( ) : System

Initializes a new instance of the RegValue class.

RegValue ( Feature feature, RegistryHive root, string key, string name, object value ) : System

Initializes a new instance of the RegValue class with properties initialized with specified parameters.

RegValue ( Id id, Feature feature, RegistryHive root, string key, string name, object value ) : System

Initializes a new instance of the RegValue class with properties initialized with specified parameters.

RegValue ( Id id, RegistryHive root, string key, string name, object value ) : System

Initializes a new instance of the RegValue class with properties initialized with specified parameters.

RegValue ( Id id, string key, string name, object value ) : System

Initializes a new instance of the RegValue class with properties initialized with specified parameters.

RegValue ( RegistryHive root, string key, string name, object value ) : System

Initializes a new instance of the RegValue class with properties initialized with specified parameters.

RegValue ( string key, string name, object value ) : System

Initializes a new instance of the RegValue class with properties initialized with specified parameters.

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

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

Initializes a new instance of the RegValue class.
public RegValue ( ) : System
Результат System

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

Initializes a new instance of the RegValue class with properties initialized with specified parameters.
public RegValue ( Feature feature, RegistryHive root, string key, string name, object value ) : System
feature Feature the registry value should be included in.
root RegistryHive The registry hive name.
key string The registry key name.
name string The registry entry name.
value object The registry entry value.
Результат System

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

Initializes a new instance of the RegValue class with properties initialized with specified parameters.
public RegValue ( Id id, Feature feature, RegistryHive root, string key, string name, object value ) : System
id Id The explicit to be associated with instance.
feature Feature the registry value should be included in.
root RegistryHive The registry hive name.
key string The registry key name.
name string The registry entry name.
value object The registry entry value.
Результат System

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

Initializes a new instance of the RegValue class with properties initialized with specified parameters.
public RegValue ( Id id, RegistryHive root, string key, string name, object value ) : System
id Id The explicit to be associated with instance.
root RegistryHive The registry hive name.
key string The registry key name.
name string The registry entry name.
value object The registry entry value.
Результат System

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

Initializes a new instance of the RegValue class with properties initialized with specified parameters.
public RegValue ( Id id, string key, string name, object value ) : System
id Id The explicit to be associated with instance.
key string The registry key name.
name string The registry entry name.
value object The registry entry value.
Результат System

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

Initializes a new instance of the RegValue class with properties initialized with specified parameters.
public RegValue ( RegistryHive root, string key, string name, object value ) : System
root RegistryHive The registry hive name.
key string The registry key name.
name string The registry entry name.
value object The registry entry value.
Результат System

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

Initializes a new instance of the RegValue class with properties initialized with specified parameters.
public RegValue ( string key, string name, object value ) : System
key string The registry key name.
name string The registry entry name.
value object The registry entry value.
Результат System

Описание свойств

Condition публичное свойство

Defines the installation Condition, which is to be checked during the installation to determine if the registry value should be created on the target system.
public Condition Condition
Результат Condition

Feature публичное свойство

the registry value belongs to.
public Feature,WixSharp Feature
Результат Feature

ForceCreateOnInstall публичное свойство

Set this to create an empty key, if absent, when the parent component is installed.
public bool ForceCreateOnInstall
Результат bool

ForceDeleteOnUninstall публичное свойство

Set this to remove the key with all its values and subkeys when the parent component is uninstalled.
public bool ForceDeleteOnUninstall
Результат bool

Key публичное свойство

The registry key name.

Default value is String.Empty

public string Key
Результат string

RegistryKeyAction публичное свойство

Set this to create an empty key, if absent, when the parent component is installed.
public RegistryKeyAction RegistryKeyAction
Результат RegistryKeyAction

Root публичное свойство

The registry hive name.

Default value is RegistryHive.CurrentUser

public RegistryHive Root
Результат RegistryHive

Value публичное свойство

The registry entry value.
public object Value
Результат object

Win64 публичное свойство

Facilitates the installation of packages that include both 32-bit and 64-bit components. Set this attribute to 'yes' to mark the corresponding RegValue as a 64-bit component.
public bool Win64
Результат bool