C# 클래스 WixSharp.RegValue

Defines registry value to be installed.
상속: WixEntity
파일 보기 프로젝트 열기: Eun/WixSharp 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
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