C# Class WixSharp.InstalledFileAction

Defines WiX InstalledFileAction for executing installed file.
Inheritance: Action
ファイルを表示 Open project: Eun/WixSharp

Public Properties

Property Type Description
Args string
Key string

Public Methods

Method Description
InstalledFileAction ( Id id, string key, string args )

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

InstalledFileAction ( Id id, string key, string args, Return returnType, When when, Step step, Condition condition )

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

InstalledFileAction ( Id id, string key, string args, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )

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

InstalledFileAction ( string key, string args )

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

InstalledFileAction ( string key, string args, Return returnType, When when, Step step, Condition condition )

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

InstalledFileAction ( string key, string args, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )

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

Method Details

InstalledFileAction() public method

Initializes a new instance of the InstalledFileAction class with properties/fields initialized with specified parameters.
public InstalledFileAction ( Id id, string key, string args )
id Id The explicit to be associated with instance.
key string The key (file name) of the installed file to be executed.
args string The arguments to be passed to the file during the execution.

InstalledFileAction() public method

Initializes a new instance of the InstalledFileAction class with properties/fields initialized with specified parameters.
public InstalledFileAction ( Id id, string key, string args, Return returnType, When when, Step step, Condition condition )
id Id The explicit to be associated with instance.
key string The key (file name) of the installed file to be executed.
args string The arguments to be passed to the file during the execution.
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 .

InstalledFileAction() public method

Initializes a new instance of the InstalledFileAction class with properties/fields initialized with specified parameters.
public InstalledFileAction ( Id id, string key, string args, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )
id Id The explicit to be associated with instance.
key string The key (file name) of the installed file to be executed.
args string The arguments to be passed to the file during the execution.
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.

InstalledFileAction() public method

Initializes a new instance of the InstalledFileAction class with properties/fields initialized with specified parameters.
public InstalledFileAction ( string key, string args )
key string The key (file name) of the installed file to be executed.
args string The arguments to be passed to the file during the execution.

InstalledFileAction() public method

Initializes a new instance of the InstalledFileAction class with properties/fields initialized with specified parameters.
public InstalledFileAction ( string key, string args, Return returnType, When when, Step step, Condition condition )
key string The key (file name) of the installed file to be executed.
args string The arguments to be passed to the file during the execution.
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 .

InstalledFileAction() public method

Initializes a new instance of the InstalledFileAction class with properties/fields initialized with specified parameters.
public InstalledFileAction ( string key, string args, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )
key string The key (file name) of the installed file to be executed.
args string The arguments to be passed to the file during the execution.
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

Args public_oe property

The arguments to be passed to the file during the execution.
public string Args
return string

Key public_oe property

The key (file name) of the installed file to be executed.
public string Key
return string