Skip to content

ExecutePackageBeginEventArgs Class

Event arguments for «see E:WixToolset.Mba.Core.IDefaultBootstrapperApplication.ExecutePackageBegin»

PropertyDescription
ActionGets the action about to be executed.
DisableExternalUiHandlerGets whether Burn will set up an external UI handler (if this is an MSI or MSP package).
PackageIdGets the identity of the package to act on.
ShouldExecuteGets whether the package is being executed or rolled back.
UiLevelGets the internal UI level (if this is an MSI or MSP package).
WixToolset.Mba.Core.dll version 4.0.5+b9b2f1b4c69a1b509d487dc950b30b4ec9b0d040

Gets the action about to be executed.

public ActionState Action { get; set; }

Gets whether Burn will set up an external UI handler (if this is an MSI or MSP package).

public bool DisableExternalUiHandler { get; set; }

Gets the identity of the package to act on.

public string PackageId { get; set; }

Gets whether the package is being executed or rolled back.

public bool ShouldExecute { get; set; }

Gets the internal UI level (if this is an MSI or MSP package).

public INSTALLUILEVEL UiLevel { get; set; }