diff options
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs')
-rw-r--r-- | src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs b/src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs index 21d99b32..77089e83 100644 --- a/src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs +++ b/src/api/burn/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs | |||
@@ -36,15 +36,15 @@ namespace WixToolset.Mba.Core | |||
36 | 36 | ||
37 | /// <summary> | 37 | /// <summary> |
38 | /// Fired when the engine has begun acquiring the payload or container. | 38 | /// Fired when the engine has begun acquiring the payload or container. |
39 | /// The BA can change the source using <see cref="IEngine.SetLocalSource(string, string, string)"/> | 39 | /// The BA can change the source using <see cref="IEngine.SetLocalSource(String, String, String)"/> |
40 | /// or <see cref="IEngine.SetDownloadSource(string, string, string, string, string)"/>. | 40 | /// or <see cref="IEngine.SetDownloadSource(String, String, String, String, String)"/>. |
41 | /// </summary> | 41 | /// </summary> |
42 | event EventHandler<CacheAcquireBeginEventArgs> CacheAcquireBegin; | 42 | event EventHandler<CacheAcquireBeginEventArgs> CacheAcquireBegin; |
43 | 43 | ||
44 | /// <summary> | 44 | /// <summary> |
45 | /// Fired when the engine has completed the acquisition of the payload or container. | 45 | /// Fired when the engine has completed the acquisition of the payload or container. |
46 | /// The BA can change the source using <see cref="IEngine.SetLocalSource(string, string, string)"/> | 46 | /// The BA can change the source using <see cref="IEngine.SetLocalSource(String, String, String)"/> |
47 | /// or <see cref="IEngine.SetDownloadSource(string, string, string, string, string)"/>. | 47 | /// or <see cref="IEngine.SetDownloadSource(String, String, String, String, String)"/>. |
48 | /// </summary> | 48 | /// </summary> |
49 | event EventHandler<CacheAcquireCompleteEventArgs> CacheAcquireComplete; | 49 | event EventHandler<CacheAcquireCompleteEventArgs> CacheAcquireComplete; |
50 | 50 | ||
@@ -179,6 +179,11 @@ namespace WixToolset.Mba.Core | |||
179 | event EventHandler<DetectRelatedBundleEventArgs> DetectRelatedBundle; | 179 | event EventHandler<DetectRelatedBundleEventArgs> DetectRelatedBundle; |
180 | 180 | ||
181 | /// <summary> | 181 | /// <summary> |
182 | /// Fired when a related bundle has been detected for a bundle package. | ||
183 | /// </summary> | ||
184 | event EventHandler<DetectRelatedBundlePackageEventArgs> DetectRelatedBundlePackage; | ||
185 | |||
186 | /// <summary> | ||
182 | /// Fired when a related MSI package has been detected for a package. | 187 | /// Fired when a related MSI package has been detected for a package. |
183 | /// </summary> | 188 | /// </summary> |
184 | event EventHandler<DetectRelatedMsiPackageEventArgs> DetectRelatedMsiPackage; | 189 | event EventHandler<DetectRelatedMsiPackageEventArgs> DetectRelatedMsiPackage; |