C# Class WixSharp.PathFileAction

Defines WiX CustomAction for executing file specified by the path on the target system.
Inheritance: Action
Datei anzeigen Open project: Eun/WixSharp

Public Properties

Property Type Description
AppPath string
Args string
WorkingDir string

Public Methods

Method Description
PathFileAction ( Id id, string appPath, string args, string workingDir )

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

PathFileAction ( Id id, string appPath, string args, string workingDir, Return returnType, When when, Step step, Condition condition )

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

PathFileAction ( Id id, string appPath, string args, string workingDir, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )

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

PathFileAction ( string appPath, string args, string workingDir )

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

PathFileAction ( string appPath, string args, string workingDir, Return returnType, When when, Step step, Condition condition )

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

PathFileAction ( string appPath, string args, string workingDir, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )

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

Method Details

PathFileAction() public method

Initializes a new instance of the PathFileAction class with properties/fields initialized with specified parameters.
public PathFileAction ( Id id, string appPath, string args, string workingDir )
id Id The explicit to be associated with instance.
appPath string Path to the file to be executed on the target system.
args string The arguments to be passed to the file during the execution.
workingDir string Working directory for the file execution.

PathFileAction() public method

Initializes a new instance of the PathFileAction class with properties/fields initialized with specified parameters.
public PathFileAction ( Id id, string appPath, string args, string workingDir, Return returnType, When when, Step step, Condition condition )
id Id The explicit to be associated with instance.
appPath string Path to the file to be executed on the target system.
args string The arguments to be passed to the file during the execution.
workingDir string Working directory for the file 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 .

PathFileAction() public method

Initializes a new instance of the PathFileAction class with properties/fields initialized with specified parameters.
public PathFileAction ( Id id, string appPath, string args, string workingDir, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )
id Id The explicit to be associated with instance.
appPath string Path to the file to be executed on the target system.
args string The arguments to be passed to the file during the execution.
workingDir string Working directory for the file 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.

PathFileAction() public method

Initializes a new instance of the PathFileAction class with properties/fields initialized with specified parameters.
public PathFileAction ( string appPath, string args, string workingDir )
appPath string Path to the file to be executed on the target system.
args string The arguments to be passed to the file during the execution.
workingDir string Working directory for the file execution.

PathFileAction() public method

Initializes a new instance of the PathFileAction class with properties/fields initialized with specified parameters.
public PathFileAction ( string appPath, string args, string workingDir, Return returnType, When when, Step step, Condition condition )
appPath string Path to the file to be executed on the target system.
args string The arguments to be passed to the file during the execution.
workingDir string Working directory for the file 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 .

PathFileAction() public method

Initializes a new instance of the PathFileAction class with properties/fields initialized with specified parameters.
public PathFileAction ( string appPath, string args, string workingDir, Return returnType, When when, Step step, Condition condition, WixSharp.Sequence sequence )
appPath string Path to the file to be executed on the target system.
args string The arguments to be passed to the file during the execution.
workingDir string Working directory for the file 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

AppPath public_oe property

Path to the file to be executed on the target system.
public string AppPath
return string

Args public_oe property

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

WorkingDir public_oe property

Working directory for the file execution.
public string WorkingDir
return string