IBurnBackendHelper Interface
Interface provided to help Burn backend extensions.
Methods
Method | Description |
---|---|
AddBootstrapperApplicationData(xml) | Adds the given XML to the BootstrapperApplicationData manifest. |
AddBootstrapperApplicationData(symbol, symbolIdIsIdAttribute) | Adds an XML element for the given symbol to the BootstrapperApplicationData manifest. The symbol's name is used for the element's name. All of the symbol's fields are used for the element's attributes. |
AddBootstrapperExtensionData(extensionId, xml) | Adds the given XML to the BootstrapperExtensionData manifest for the given bundle extension. |
AddBootstrapperExtensionData(extensionId, symbol, symbolIdIsIdAttribute) | Adds an XML element for the given symbol to the BootstrapperExtensionData manifest for the given bundle extension. The symbol's name is used for the element's name. All of the symbol's fields are used for the element's attributes. |
WixToolset.Extensibility.dll
version 5.0.2+aa65968c419420d32e3e1b647aea0082f5ca5b78
AddBootstrapperApplicationData(xml) Method
Adds the given XML to the BootstrapperApplicationData manifest.
Declaration
public void AddBootstrapperApplicationData(
string xml
)
Parameters
Parameter | Type | Description |
---|---|---|
xml | string | A valid XML fragment. |
AddBootstrapperApplicationData(symbol, symbolIdIsIdAttribute) Method
Adds an XML element for the given symbol to the BootstrapperApplicationData manifest. The symbol's name is used for the element's name. All of the symbol's fields are used for the element's attributes.
Declaration
public void AddBootstrapperApplicationData(
WixToolset.Data.IntermediateSymbol symbol,
bool symbolIdIsIdAttribute
)
Parameters
Parameter | Type | Description |
---|---|---|
symbol | WixToolset.Data.IntermediateSymbol | The symbol to create the element from. |
symbolIdIsIdAttribute | bool | If true and the symbol has an Id, then an Id attribute is created with a value of the symbol's Id. |
AddBootstrapperExtensionData(extensionId, xml) Method
Adds the given XML to the BootstrapperExtensionData manifest for the given bundle extension.
Declaration
public void AddBootstrapperExtensionData(
string extensionId,
string xml
)
Parameters
Parameter | Type | Description |
---|---|---|
extensionId | string | The bundle extension's id. |
xml | string | A valid XML fragment. |
AddBootstrapperExtensionData(extensionId, symbol, symbolIdIsIdAttribute) Method
Adds an XML element for the given symbol to the BootstrapperExtensionData manifest for the given bundle extension. The symbol's name is used for the element's name. All of the symbol's fields are used for the element's attributes.
Declaration
public void AddBootstrapperExtensionData(
string extensionId,
WixToolset.Data.IntermediateSymbol symbol,
bool symbolIdIsIdAttribute
)
Parameters
Parameter | Type | Description |
---|---|---|
extensionId | string | The bundle extension's id. |
symbol | WixToolset.Data.IntermediateSymbol | The symbol to create the element from. |
symbolIdIsIdAttribute | bool | If true and the symbol has an Id, then an Id attribute is created with a value of the symbol's Id. |