C# Class WixSharp.PropertyRef

Defines reference to the Wix custom property.

Sometimes it desirable to access WiX properties defined in the extension modules. PropertyRef is designed for such cases. You can use it as an ordinary WiX property but you do not need to set it up (e.g. define initial value) as it is already done in the corresponding extension module.

In a way PropertyRef is similar to C++ #include as it makes possible to access some entities defined in the external modules.

PropertyRef inherits from Property because of their logical relationship and usability pattern, not because of any "Parent/Child" connection.
Inheritance: Property
Afficher le fichier Open project: Eun/WixSharp

Méthodes publiques

Méthode Description
PropertyRef ( )

Initializes a new instance of the PropertyRef class.

PropertyRef ( string id )

Initializes a new instance of the PropertyRef class.

Method Details

PropertyRef() public méthode

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

PropertyRef() public méthode

Initializes a new instance of the PropertyRef class.
public PropertyRef ( string id )
id string Id of the property being referenced.