Skip to content

PlanPackageBeginEventArgs Class

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

PropertyDescription
CachedGets whether any part of the package is cached.
CacheTypeGets or sets the requested cache type for the package.
CurrentStateGets the current state of the package.
InstallConditionGets the evaluated result of the package’s install condition.
PackageIdGets the identity of the package to plan for.
RecommendedCacheTypeThe authored cache type of the package.
RecommendedStateGets the recommended requested state for the package.
RepairConditionGets the evaluated result of the package’s repair condition.
StateGets or sets the requested state for the package.
WixToolset.Mba.Core.dll version 4.0.5+b9b2f1b4c69a1b509d487dc950b30b4ec9b0d040

Gets whether any part of the package is cached.

public bool Cached { get; set; }

Gets or sets the requested cache type for the package.

public BOOTSTRAPPER_CACHE_TYPE CacheType { get; set; }

Gets the current state of the package.

public PackageState CurrentState { get; set; }

Gets the evaluated result of the package’s install condition.

public BOOTSTRAPPER_PACKAGE_CONDITION_RESULT InstallCondition { get; set; }

Gets the identity of the package to plan for.

public string PackageId { get; set; }

The authored cache type of the package.

public BOOTSTRAPPER_CACHE_TYPE RecommendedCacheType { get; set; }

Gets the recommended requested state for the package.

public RequestState RecommendedState { get; set; }

Gets the evaluated result of the package’s repair condition.

public BOOTSTRAPPER_PACKAGE_CONDITION_RESULT RepairCondition { get; set; }

Gets or sets the requested state for the package.

public RequestState State { get; set; }