C# Class WixSharp.ScriptAction

Defines WiX CustomAction for executing embedded VBScript.
Inheritance: Action
ファイルを表示 Open project: Eun/WixSharp

Public Properties

Property Type Description
Code string

Public Methods

Method Description
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.

Method Details

ScriptAction() public method

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() public method

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() public method

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() public method

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() public method

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() public method

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.

Property Details

Code public_oe property

VBScript code to be executed.
public string Code
return string