C# 클래스 WixSharp.SetPropertyAction

Defines WiX CustomAction for setting MSI property.
상속: Action
파일 보기 프로젝트 열기: Eun/WixSharp

공개 프로퍼티들

프로퍼티 타입 설명
PropName string
Value string

공개 메소드들

메소드 설명
SetPropertyAction ( )

Initializes a new instance of the SetPropertyAction class.

SetPropertyAction ( Id id, string name, string value )

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.

SetPropertyAction ( Id id, string name, string value, Return returnType )

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.

SetPropertyAction ( Id id, string name, string value, Return returnType, When when, Step step, Condition condition )

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.

SetPropertyAction ( Id id, string name, string value, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.

SetPropertyAction ( string name, string value )

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.

SetPropertyAction ( string name, string value, Return returnType )

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.

SetPropertyAction ( string name, string value, Return returnType, When when, Step step, Condition condition )

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.

메소드 상세

SetPropertyAction() 공개 메소드

Initializes a new instance of the SetPropertyAction class.
public SetPropertyAction ( )

SetPropertyAction() 공개 메소드

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.
public SetPropertyAction ( Id id, string name, string value )
id Id The explicit to be associated with instance.
name string Name of the property to be assigned.
value string Value to be set to the property.

SetPropertyAction() 공개 메소드

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.
public SetPropertyAction ( Id id, string name, string value, Return returnType )
id Id The explicit to be associated with instance.
name string Name of the property to be assigned.
value string Value to be set to the property.
returnType Return The return type of the action.

SetPropertyAction() 공개 메소드

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.
public SetPropertyAction ( Id id, string name, string value, Return returnType, When when, Step step, Condition condition )
id Id The explicit to be associated with instance.
name string Name of the property to be assigned.
value string Value to be set to the property.
returnType Return The return type of the action.
when When the action should be executed with respect to the parameter.
step Step the action should be executed before/after during the installation.
condition Condition The launch condition for the .

SetPropertyAction() 공개 메소드

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.
public SetPropertyAction ( Id id, string name, string value, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )
id Id The explicit to be associated with instance.
name string Name of the property to be assigned.
value string Value to be set to the property.
returnType Return The return type of the action.
when When the action should be executed with respect to the parameter.
step Step the action should be executed before/after during the installation.
condition Condition The launch condition for the .
sequence WixSharp.Sequence The MSI sequence the action belongs to.

SetPropertyAction() 공개 메소드

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.
public SetPropertyAction ( string name, string value )
name string Name of the property to be assigned.
value string Value to be set to the property.

SetPropertyAction() 공개 메소드

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.
public SetPropertyAction ( string name, string value, Return returnType )
name string Name of the property to be assigned.
value string Value to be set to the property.
returnType Return The return type of the action.

SetPropertyAction() 공개 메소드

Initializes a new instance of the SetPropertyAction class with properties/fields initialized with specified parameters.
public SetPropertyAction ( string name, string value, Return returnType, When when, Step step, Condition condition )
name string Name of the property to be assigned.
value string Value to be set to the property.
returnType Return The return type of the action.
when When the action should be executed with respect to the parameter.
step Step the action should be executed before/after during the installation.
condition Condition The launch condition for the .

프로퍼티 상세

PropName 공개적으로 프로퍼티

Name of the property to be set.
public string PropName
리턴 string

Value 공개적으로 프로퍼티

Value to set the property to.
public string Value
리턴 string