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
Datei anzeigen Open project: Eun/WixSharp

Public Methods

Method 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 method

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

PropertyRef() public method

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