aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs')
-rw-r--r--src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs b/src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs
index 2fa88bdb..51ea4e4d 100644
--- a/src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs
+++ b/src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs
@@ -139,6 +139,16 @@ namespace WixToolset.Mba.Core
139 event EventHandler<CommitMsiTransactionCompleteEventArgs> CommitMsiTransactionComplete; 139 event EventHandler<CommitMsiTransactionCompleteEventArgs> CommitMsiTransactionComplete;
140 140
141 /// <summary> 141 /// <summary>
142 /// Fired when the application is being created.
143 /// </summary>
144 event EventHandler<CreateEventArgs> Create;
145
146 /// <summary>
147 /// Fired when the application is being destroyed.
148 /// </summary>
149 event EventHandler<DestroyEventArgs> Destroy;
150
151 /// <summary>
142 /// Fired when the overall detection phase has begun. 152 /// Fired when the overall detection phase has begun.
143 /// </summary> 153 /// </summary>
144 event EventHandler<DetectBeginEventArgs> DetectBegin; 154 event EventHandler<DetectBeginEventArgs> DetectBegin;
@@ -394,16 +404,6 @@ namespace WixToolset.Mba.Core
394 event EventHandler<RollbackMsiTransactionCompleteEventArgs> RollbackMsiTransactionComplete; 404 event EventHandler<RollbackMsiTransactionCompleteEventArgs> RollbackMsiTransactionComplete;
395 405
396 /// <summary> 406 /// <summary>
397 /// Fired when the engine has begun to setup the update package.
398 /// </summary>
399 event EventHandler<SetUpdateBeginEventArgs> SetUpdateBegin;
400
401 /// <summary>
402 /// Fired when the engine has completed setting up the update package.
403 /// </summary>
404 event EventHandler<SetUpdateCompleteEventArgs> SetUpdateComplete;
405
406 /// <summary>
407 /// Fired when the engine is shutting down the bootstrapper application. 407 /// Fired when the engine is shutting down the bootstrapper application.
408 /// </summary> 408 /// </summary>
409 event EventHandler<ShutdownEventArgs> Shutdown; 409 event EventHandler<ShutdownEventArgs> Shutdown;