C# 클래스 WixSharp.ScriptAction

Defines WiX CustomAction for executing embedded VBScript.
상속: Action
파일 보기 프로젝트 열기: Eun/WixSharp

공개 프로퍼티들

프로퍼티 타입 설명
Code string

공개 메소드들

메소드 설명
ScriptAction ( Id id, string code )

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

ScriptAction ( Id id, string code, Return returnType, When when, Step step, Condition condition )

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

ScriptAction ( Id id, string code, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )

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

ScriptAction ( string code )

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

ScriptAction ( string code, Return returnType, When when, Step step, Condition condition )

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

ScriptAction ( string code, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )

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

메소드 상세

ScriptAction() 공개 메소드

Initializes a new instance of the ScriptAction class with properties/fields initialized with specified parameters.
public ScriptAction ( Id id, string code )
id Id The explicit to be associated with instance.
code string VBScript code to be executed.

ScriptAction() 공개 메소드

Initializes a new instance of the ScriptAction class with properties/fields initialized with specified parameters.
public ScriptAction ( Id id, string code, Return returnType, When when, Step step, Condition condition )
id Id The explicit to be associated with instance.
code string VBScript code to be executed.
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 .

ScriptAction() 공개 메소드

Initializes a new instance of the ScriptAction class with properties/fields initialized with specified parameters.
public ScriptAction ( Id id, string code, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )
id Id The explicit to be associated with instance.
code string VBScript code to be executed.
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.

ScriptAction() 공개 메소드

Initializes a new instance of the ScriptAction class with properties/fields initialized with specified parameters.
public ScriptAction ( string code )
code string VBScript code to be executed.

ScriptAction() 공개 메소드

Initializes a new instance of the ScriptAction class with properties/fields initialized with specified parameters.
public ScriptAction ( string code, Return returnType, When when, Step step, Condition condition )
code string VBScript code to be executed.
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 .

ScriptAction() 공개 메소드

Initializes a new instance of the ScriptAction class with properties/fields initialized with specified parameters.
public ScriptAction ( string code, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )
code string VBScript code to be executed.
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.

프로퍼티 상세

Code 공개적으로 프로퍼티

VBScript code to be executed.
public string Code
리턴 string