From 80df808461fca91b53e232b5b504a5c868029697 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Sat, 19 Dec 2020 19:15:11 -0600 Subject: Enable XML doc. --- src/WixToolset.Mba.Core/BootstrapperApplication.cs | 424 +++++++-------------- 1 file changed, 133 insertions(+), 291 deletions(-) (limited to 'src/WixToolset.Mba.Core/BootstrapperApplication.cs') diff --git a/src/WixToolset.Mba.Core/BootstrapperApplication.cs b/src/WixToolset.Mba.Core/BootstrapperApplication.cs index 2d527427..759e76b1 100644 --- a/src/WixToolset.Mba.Core/BootstrapperApplication.cs +++ b/src/WixToolset.Mba.Core/BootstrapperApplication.cs @@ -34,347 +34,202 @@ namespace WixToolset.Mba.Core this.asyncExecution = true; } - /// - /// Fired when the engine is starting up the bootstrapper application. - /// + /// public event EventHandler Startup; - /// - /// Fired when the engine is shutting down the bootstrapper application. - /// + /// public event EventHandler Shutdown; - /// - /// Fired when the system is shutting down or user is logging off. - /// - /// - /// To prevent shutting down or logging off, set to - /// true; otherwise, set it to false. - /// By default setup will prevent shutting down or logging off between - /// and . - /// Derivatives can change this behavior by overriding - /// or handling . - /// If contains - /// the bootstrapper cannot prevent the shutdown and only has a few seconds to save state or perform any other - /// critical operations before being closed by the operating system. - /// This event may be fired on a different thread. - /// + /// public event EventHandler SystemShutdown; - /// - /// Fired when the overall detection phase has begun. - /// + /// public event EventHandler DetectBegin; - /// - /// Fired when a forward compatible bundle is detected. - /// + /// public event EventHandler DetectForwardCompatibleBundle; - /// - /// Fired when the update detection phase has begun. - /// + /// public event EventHandler DetectUpdateBegin; - /// - /// Fired when the update detection has found a potential update candidate. - /// + /// public event EventHandler DetectUpdate; - /// - /// Fired when the update detection phase has completed. - /// + /// public event EventHandler DetectUpdateComplete; - /// - /// Fired when a related bundle has been detected for a bundle. - /// + /// public event EventHandler DetectRelatedBundle; - /// - /// Fired when the detection for a specific package has begun. - /// + /// public event EventHandler DetectPackageBegin; - /// - /// Fired when a package was not detected but a package using the same provider key was. - /// + /// public event EventHandler DetectCompatibleMsiPackage; - - /// - /// Fired when a related MSI package has been detected for a package. - /// + + /// public event EventHandler DetectRelatedMsiPackage; - /// - /// Fired when an MSP package detects a target MSI has been detected. - /// + /// public event EventHandler DetectTargetMsiPackage; - /// - /// Fired when a feature in an MSI package has been detected. - /// + /// public event EventHandler DetectMsiFeature; - /// - /// Fired when the detection for a specific package has completed. - /// + /// public event EventHandler DetectPackageComplete; - /// - /// Fired when the detection phase has completed. - /// + /// public event EventHandler DetectComplete; - /// - /// Fired when the engine has begun planning the installation. - /// + /// public event EventHandler PlanBegin; - /// - /// Fired when the engine has begun planning for a related bundle. - /// + /// public event EventHandler PlanRelatedBundle; - /// - /// Fired when the engine has begun planning the installation of a specific package. - /// + /// public event EventHandler PlanPackageBegin; - /// - /// Fired when the engine plans a new, compatible package using the same provider key. - /// + /// public event EventHandler PlanCompatibleMsiPackageBegin; - /// - /// Fired when the engine has completed planning the installation of a specific package. - /// + /// public event EventHandler PlanCompatibleMsiPackageComplete; - /// - /// Fired when the engine is about to plan the target MSI of a MSP package. - /// + /// public event EventHandler PlanTargetMsiPackage; - /// - /// Fired when the engine is about to plan a feature in an MSI package. - /// + /// public event EventHandler PlanMsiFeature; - /// - /// Fired when the engine is planning an MSI or MSP package. - /// + /// public event EventHandler PlanMsiPackage; - /// - /// Fired when the engine has completed planning the installation of a specific package. - /// + /// public event EventHandler PlanPackageComplete; - /// - /// Fired when the engine has completed planning the installation. - /// + /// public event EventHandler PlanComplete; - /// - /// Fired when the engine has begun installing the bundle. - /// + /// public event EventHandler ApplyBegin; - /// - /// Fired when the engine is about to start the elevated process. - /// + /// public event EventHandler ElevateBegin; - /// - /// Fired when the engine has completed starting the elevated process. - /// + /// public event EventHandler ElevateComplete; - /// - /// Fired when the engine has changed progress for the bundle installation. - /// + /// public event EventHandler Progress; - /// - /// Fired when the engine has encountered an error. - /// + /// public event EventHandler Error; - /// - /// Fired when the engine has begun registering the location and visibility of the bundle. - /// + /// public event EventHandler RegisterBegin; - /// - /// Fired when the engine has completed registering the location and visibility of the bundle. - /// + /// public event EventHandler RegisterComplete; - /// - /// Fired when the engine has begun removing the registration for the location and visibility of the bundle. - /// + /// public event EventHandler UnregisterBegin; - /// - /// Fired when the engine has completed removing the registration for the location and visibility of the bundle. - /// + /// public event EventHandler UnregisterComplete; - /// - /// Fired when the engine has begun caching the installation sources. - /// + /// public event EventHandler CacheBegin; - /// - /// Fired when the engine has begun caching a specific package. - /// + /// public event EventHandler CachePackageBegin; - /// - /// Fired when the engine has begun acquiring the installation sources. - /// + /// public event EventHandler CacheAcquireBegin; - /// - /// Fired when the engine has progress acquiring the installation sources. - /// + /// public event EventHandler CacheAcquireProgress; - /// - /// Fired by the engine to allow the BA to change the source - /// using or . - /// + /// public event EventHandler ResolveSource; - /// - /// Fired when the engine has completed the acquisition of the installation sources. - /// + /// public event EventHandler CacheAcquireComplete; - /// - /// Fired when the engine begins the verification of the acquired installation sources. - /// + /// public event EventHandler CacheVerifyBegin; - /// - /// Fired when the engine complete the verification of the acquired installation sources. - /// + /// public event EventHandler CacheVerifyComplete; - /// - /// Fired when the engine has completed caching a specific package. - /// + /// public event EventHandler CachePackageComplete; - /// - /// Fired after the engine has cached the installation sources. - /// + /// public event EventHandler CacheComplete; - /// - /// Fired when the engine has begun installing packages. - /// + /// public event EventHandler ExecuteBegin; - /// - /// Fired when the engine has begun installing a specific package. - /// + /// public event EventHandler ExecutePackageBegin; - /// - /// Fired when the engine executes one or more patches targeting a product. - /// + /// public event EventHandler ExecutePatchTarget; - /// - /// Fired when Windows Installer sends an installation message. - /// + /// public event EventHandler ExecuteMsiMessage; - /// - /// Fired when Windows Installer sends a files in use installation message. - /// + /// public event EventHandler ExecuteFilesInUse; - /// - /// Fired when the engine has completed installing a specific package. - /// + /// public event EventHandler ExecutePackageComplete; - /// - /// Fired when the engine has completed installing packages. - /// + /// public event EventHandler ExecuteComplete; - /// - /// Fired when the engine has completed installing the bundle. - /// + /// public event EventHandler ApplyComplete; - /// - /// Fired by the engine while executing on payload. - /// + /// public event EventHandler ExecuteProgress; - /// - /// Fired when the engine is about to launch the preapproved executable. - /// + /// public event EventHandler LaunchApprovedExeBegin; - /// - /// Fired when the engine has completed launching the preapproved executable. - /// + /// public event EventHandler LaunchApprovedExeComplete; - /// - /// Fired when the engine is about to begin an MSI transaction. - /// + /// public event EventHandler BeginMsiTransactionBegin; - /// - /// Fired when the engine has completed beginning an MSI transaction. - /// + /// public event EventHandler BeginMsiTransactionComplete; - /// - /// Fired when the engine is about to commit an MSI transaction. - /// + /// public event EventHandler CommitMsiTransactionBegin; - /// - /// Fired when the engine has completed comitting an MSI transaction. - /// + /// public event EventHandler CommitMsiTransactionComplete; - /// - /// Fired when the engine is about to rollback an MSI transaction. - /// + /// public event EventHandler RollbackMsiTransactionBegin; - /// - /// Fired when the engine has completed rolling back an MSI transaction. - /// + /// public event EventHandler RollbackMsiTransactionComplete; - /// - /// Fired when the engine is about to pause Windows automatic updates. - /// + /// public event EventHandler PauseAutomaticUpdatesBegin; - /// - /// Fired when the engine has completed pausing Windows automatic updates. - /// + /// public event EventHandler PauseAutomaticUpdatesComplete; - /// - /// Fired when the engine is about to take a system restore point. - /// + /// public event EventHandler SystemRestorePointBegin; - /// - /// Fired when the engine has completed taking a system restore point. - /// + /// public event EventHandler SystemRestorePointComplete; /// @@ -383,7 +238,7 @@ namespace WixToolset.Mba.Core protected abstract void Run(); /// - /// Called by the engine on startup of the bootstrapper application. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnStartup(StartupEventArgs args) @@ -410,7 +265,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine to uninitialize the BA. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnShutdown(ShutdownEventArgs args) @@ -423,21 +278,9 @@ namespace WixToolset.Mba.Core } /// - /// Called when the system is shutting down or the user is logging off. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. - /// - /// To prevent shutting down or logging off, set to - /// true; otherwise, set it to false. - /// By default setup will prevent shutting down or logging off between - /// and . - /// Derivatives can change this behavior by overriding - /// or handling . - /// If contains - /// the bootstrapper cannot prevent the shutdown and only has a few seconds to save state or perform any other - /// critical operations before being closed by the operating system. - /// This method may be called on a different thread. - /// protected virtual void OnSystemShutdown(SystemShutdownEventArgs args) { EventHandler handler = this.SystemShutdown; @@ -454,7 +297,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the overall detection phase has begun. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectBegin(DetectBeginEventArgs args) @@ -467,7 +310,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the update detection phase has begun. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectForwardCompatibleBundle(DetectForwardCompatibleBundleEventArgs args) @@ -480,7 +323,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the update detection phase has begun. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectUpdateBegin(DetectUpdateBeginEventArgs args) @@ -493,7 +336,7 @@ namespace WixToolset.Mba.Core } /// - /// Fired when the update detection has found a potential update candidate. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectUpdate(DetectUpdateEventArgs args) @@ -506,7 +349,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the update detection phase has completed. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectUpdateComplete(DetectUpdateCompleteEventArgs args) @@ -519,7 +362,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when a related bundle has been detected for a bundle. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectRelatedBundle(DetectRelatedBundleEventArgs args) @@ -532,7 +375,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the detection for a specific package has begun. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectPackageBegin(DetectPackageBeginEventArgs args) @@ -545,7 +388,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when a package was not detected but a package using the same provider key was. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectCompatibleMsiPackage(DetectCompatibleMsiPackageEventArgs args) @@ -558,7 +401,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when a related MSI package has been detected for a package. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectRelatedMsiPackage(DetectRelatedMsiPackageEventArgs args) @@ -571,7 +414,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when an MSP package detects a target MSI has been detected. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectTargetMsiPackage(DetectTargetMsiPackageEventArgs args) @@ -584,7 +427,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when an MSI feature has been detected for a package. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectMsiFeature(DetectMsiFeatureEventArgs args) @@ -597,7 +440,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the detection for a specific package has completed. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectPackageComplete(DetectPackageCompleteEventArgs args) @@ -610,7 +453,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the detection phase has completed. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnDetectComplete(DetectCompleteEventArgs args) @@ -623,7 +466,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has begun planning the installation. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPlanBegin(PlanBeginEventArgs args) @@ -636,7 +479,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has begun planning for a prior bundle. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPlanRelatedBundle(PlanRelatedBundleEventArgs args) @@ -649,7 +492,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has begun planning the installation of a specific package. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPlanPackageBegin(PlanPackageBeginEventArgs args) @@ -662,7 +505,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine plans a new, compatible package using the same provider key. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPlanCompatibleMsiPackageBegin(PlanCompatibleMsiPackageBeginEventArgs args) @@ -675,7 +518,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has completed planning the installation of a specific package. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPlanCompatibleMsiPackageComplete(PlanCompatibleMsiPackageCompleteEventArgs args) @@ -688,7 +531,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine is about to plan the target MSI of a MSP package. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPlanTargetMsiPackage(PlanTargetMsiPackageEventArgs args) @@ -701,7 +544,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine is about to plan an MSI feature of a specific package. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPlanMsiFeature(PlanMsiFeatureEventArgs args) @@ -714,7 +557,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine is planning an MSI or MSP package. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPlanMsiPackage(PlanMsiPackageEventArgs args) @@ -727,7 +570,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when then engine has completed planning the installation of a specific package. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPlanPackageComplete(PlanPackageCompleteEventArgs args) @@ -740,7 +583,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has completed planning the installation. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPlanComplete(PlanCompleteEventArgs args) @@ -753,7 +596,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has begun installing the bundle. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnApplyBegin(ApplyBeginEventArgs args) @@ -766,7 +609,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine is about to start the elevated process. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnElevateBegin(ElevateBeginEventArgs args) @@ -779,7 +622,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has completed starting the elevated process. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnElevateComplete(ElevateCompleteEventArgs args) @@ -792,7 +635,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has changed progress for the bundle installation. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnProgress(ProgressEventArgs args) @@ -805,7 +648,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has encountered an error. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnError(ErrorEventArgs args) @@ -818,7 +661,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has begun registering the location and visibility of the bundle. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnRegisterBegin(RegisterBeginEventArgs args) @@ -831,7 +674,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has completed registering the location and visilibity of the bundle. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnRegisterComplete(RegisterCompleteEventArgs args) @@ -844,7 +687,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has begun removing the registration for the location and visibility of the bundle. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnUnregisterBegin(UnregisterBeginEventArgs args) @@ -857,7 +700,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has completed removing the registration for the location and visibility of the bundle. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnUnregisterComplete(UnregisterCompleteEventArgs args) @@ -870,7 +713,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine begins to cache the installation sources. + /// Called by the engine, raises the event. /// /// protected virtual void OnCacheBegin(CacheBeginEventArgs args) @@ -883,7 +726,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine when it begins to cache a specific package. + /// Called by the engine, raises the event. /// /// protected virtual void OnCachePackageBegin(CachePackageBeginEventArgs args) @@ -896,7 +739,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine begins to cache the container or payload. + /// Called by the engine, raises the event. /// /// protected virtual void OnCacheAcquireBegin(CacheAcquireBeginEventArgs args) @@ -909,7 +752,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has progressed on caching the container or payload. + /// Called by the engine, raises the event. /// /// protected virtual void OnCacheAcquireProgress(CacheAcquireProgressEventArgs args) @@ -922,8 +765,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine to allow the BA to change the source - /// using or . + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnResolveSource(ResolveSourceEventArgs args) @@ -936,7 +778,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine completes caching of the container or payload. + /// Called by the engine, raises the event. /// /// protected virtual void OnCacheAcquireComplete(CacheAcquireCompleteEventArgs args) @@ -949,7 +791,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has started verify the payload. + /// Called by the engine, raises the event. /// /// protected virtual void OnCacheVerifyBegin(CacheVerifyBeginEventArgs args) @@ -962,7 +804,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine completes verification of the payload. + /// Called by the engine, raises the event. /// /// protected virtual void OnCacheVerifyComplete(CacheVerifyCompleteEventArgs args) @@ -975,7 +817,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine completes caching a specific package. + /// Called by the engine, raises the event. /// /// protected virtual void OnCachePackageComplete(CachePackageCompleteEventArgs args) @@ -988,7 +830,7 @@ namespace WixToolset.Mba.Core } /// - /// Called after the engine has cached the installation sources. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnCacheComplete(CacheCompleteEventArgs args) @@ -1001,7 +843,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has begun installing packages. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnExecuteBegin(ExecuteBeginEventArgs args) @@ -1014,7 +856,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has begun installing a specific package. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnExecutePackageBegin(ExecutePackageBeginEventArgs args) @@ -1027,7 +869,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine executes one or more patches targeting a product. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnExecutePatchTarget(ExecutePatchTargetEventArgs args) @@ -1040,7 +882,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when Windows Installer sends an installation message. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnExecuteMsiMessage(ExecuteMsiMessageEventArgs args) @@ -1053,7 +895,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when Windows Installer sends a file in use installation message. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnExecuteFilesInUse(ExecuteFilesInUseEventArgs args) @@ -1066,7 +908,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has completed installing a specific package. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnExecutePackageComplete(ExecutePackageCompleteEventArgs args) @@ -1079,7 +921,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has completed installing packages. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnExecuteComplete(ExecuteCompleteEventArgs args) @@ -1092,7 +934,7 @@ namespace WixToolset.Mba.Core } /// - /// Called when the engine has completed installing the bundle. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnApplyComplete(ApplyCompleteEventArgs args) @@ -1105,7 +947,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine while executing on payload. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnExecuteProgress(ExecuteProgressEventArgs args) @@ -1118,7 +960,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine before trying to launch the preapproved executable. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnLaunchApprovedExeBegin(LaunchApprovedExeBeginEventArgs args) @@ -1131,7 +973,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine after trying to launch the preapproved executable. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnLaunchApprovedExeComplete(LaunchApprovedExeCompleteEventArgs args) @@ -1144,7 +986,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine before beginning an MSI transaction. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnBeginMsiTransactionBegin(BeginMsiTransactionBeginEventArgs args) @@ -1157,7 +999,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine after beginning an MSI transaction. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnBeginMsiTransactionComplete(BeginMsiTransactionCompleteEventArgs args) @@ -1170,7 +1012,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine before committing an MSI transaction. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnCommitMsiTransactionBegin(CommitMsiTransactionBeginEventArgs args) @@ -1183,7 +1025,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine after committing an MSI transaction. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnCommitMsiTransactionComplete(CommitMsiTransactionCompleteEventArgs args) @@ -1196,7 +1038,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine before rolling back an MSI transaction. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnRollbackMsiTransactionBegin(RollbackMsiTransactionBeginEventArgs args) @@ -1209,7 +1051,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine after rolling back an MSI transaction. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnRollbackMsiTransactionComplete(RollbackMsiTransactionCompleteEventArgs args) @@ -1222,7 +1064,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine before pausing Windows automatic updates. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPauseAutomaticUpdatesBegin(PauseAutomaticUpdatesBeginEventArgs args) @@ -1235,7 +1077,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine after pausing Windows automatic updates. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnPauseAutomaticUpdatesComplete(PauseAutomaticUpdatesCompleteEventArgs args) @@ -1248,7 +1090,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine before taking a system restore point. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnSystemRestorePointBegin(SystemRestorePointBeginEventArgs args) @@ -1261,7 +1103,7 @@ namespace WixToolset.Mba.Core } /// - /// Called by the engine after taking a system restore point. + /// Called by the engine, raises the event. /// /// Additional arguments for this event. protected virtual void OnSystemRestorePointComplete(SystemRestorePointCompleteEventArgs args) -- cgit v1.2.3-55-g6feb