diff options
| author | Bob Arnson <bob@firegiant.com> | 2025-04-01 16:48:38 -0400 |
|---|---|---|
| committer | Bob Arnson <github@bobs.org> | 2025-04-03 17:24:54 -0400 |
| commit | 36eb3fabd3082912d79dbeafc8c406ac6755e1b9 (patch) | |
| tree | a3a670de32b5079e39e259240b8ccfbafde90c8f /src/api/burn/WixToolset.BootstrapperApplicationApi/IDefaultBootstrapperApplication.cs | |
| parent | ed19d167c0d3071709a72143f106dbb5efdddeba (diff) | |
| download | wix-36eb3fabd3082912d79dbeafc8c406ac6755e1b9.tar.gz wix-36eb3fabd3082912d79dbeafc8c406ac6755e1b9.tar.bz2 wix-36eb3fabd3082912d79dbeafc8c406ac6755e1b9.zip | |
Sync IEngine.SetDownloadSource with native side.
Fixes https://github.com/wixtoolset/issues/issues/9018
Diffstat (limited to '')
| -rw-r--r-- | src/api/burn/WixToolset.BootstrapperApplicationApi/IDefaultBootstrapperApplication.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/burn/WixToolset.BootstrapperApplicationApi/IDefaultBootstrapperApplication.cs b/src/api/burn/WixToolset.BootstrapperApplicationApi/IDefaultBootstrapperApplication.cs index ad51b2be..1ff12c28 100644 --- a/src/api/burn/WixToolset.BootstrapperApplicationApi/IDefaultBootstrapperApplication.cs +++ b/src/api/burn/WixToolset.BootstrapperApplicationApi/IDefaultBootstrapperApplication.cs | |||
| @@ -37,14 +37,14 @@ namespace WixToolset.BootstrapperApplicationApi | |||
| 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, 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, String)"/>. |
| 48 | /// </summary> | 48 | /// </summary> |
| 49 | event EventHandler<CacheAcquireCompleteEventArgs> CacheAcquireComplete; | 49 | event EventHandler<CacheAcquireCompleteEventArgs> CacheAcquireComplete; |
| 50 | 50 | ||
