Skip to content

PlannedPackageEventArgs Class

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

PropertyDescription
CacheGets whether the package will be cached.
ExecuteGets the planned execution action.
PackageIdGets the identity of the package planned for.
RollbackGets the planned rollback action.
UncacheGets whether the package will be removed from the package cache.
WixToolset.Mba.Core.dll version 4.0.5+b9b2f1b4c69a1b509d487dc950b30b4ec9b0d040

Gets whether the package will be cached.

public bool Cache { get; set; }

Gets the planned execution action.

public ActionState Execute { get; set; }

Gets the identity of the package planned for.

public string PackageId { get; set; }

Gets the planned rollback action.

public ActionState Rollback { get; set; }

Gets whether the package will be removed from the package cache.

public bool Uncache { get; set; }