C# Класс WixSharp.SetPropertyAction

Defines WiX CustomAction for setting MSI property.
Наследование: Action
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
PropName string
Value string

Открытые методы

Метод Описание
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.

Описание методов

SetPropertyAction() публичный Метод

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

SetPropertyAction() публичный Метод

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() публичный Метод

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() публичный Метод

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() публичный Метод

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() публичный Метод

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() публичный Метод

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() публичный Метод

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 .

Описание свойств

PropName публичное свойство

Name of the property to be set.
public string PropName
Результат string

Value публичное свойство

Value to set the property to.
public string Value
Результат string