PlannedPackageEventArgs Class
Event arguments for «see E:WixToolset.Mba.Core.IDefaultBootstrapperApplication.PlannedPackage»
Properties
| Property | Description |
|---|---|
| Cache | Gets whether the package will be cached. |
| Execute | Gets the planned execution action. |
| PackageId | Gets the identity of the package planned for. |
| Rollback | Gets the planned rollback action. |
| Uncache | Gets whether the package will be removed from the package cache. |
WixToolset.Mba.Core.dll version 4.0.5+b9b2f1b4c69a1b509d487dc950b30b4ec9b0d040 |
Cache Property
Gets whether the package will be cached.
Declaration
public bool Cache { get; set; }Execute Property
Gets the planned execution action.
Declaration
public ActionState Execute { get; set; }PackageId Property
Gets the identity of the package planned for.
Declaration
public string PackageId { get; set; }Rollback Property
Gets the planned rollback action.
Declaration
public ActionState Rollback { get; set; }Uncache Property
Gets whether the package will be removed from the package cache.
Declaration
public bool Uncache { get; set; }