C# 클래스 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.
상속: Property
파일 보기 프로젝트 열기: Eun/WixSharp

공개 메소드들

메소드 설명
PropertyRef ( )

Initializes a new instance of the PropertyRef class.

PropertyRef ( string id )

Initializes a new instance of the PropertyRef class.

메소드 상세

PropertyRef() 공개 메소드

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

PropertyRef() 공개 메소드

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