C# Class WixSharp.SetPropertyAction

Defines WiX CustomAction for setting MSI property.
Inheritance: Action
Datei anzeigen Open project: Eun/WixSharp

Public Properties

Property Type Description
PropName string
Value string

Public Methods

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

Method Details

SetPropertyAction() public method

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

SetPropertyAction() public method

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

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

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

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

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

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

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 .

Property Details

PropName public_oe property

Name of the property to be set.
public string PropName
return string

Value public_oe property

Value to set the property to.
public string Value
return string