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 | |
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 'src/api')
4 files changed, 9 insertions, 7 deletions
diff --git a/src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs b/src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs index 44d77359..52ac90c5 100644 --- a/src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs +++ b/src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs | |||
@@ -271,9 +271,9 @@ namespace WixToolset.BootstrapperApplicationApi | |||
271 | } | 271 | } |
272 | 272 | ||
273 | /// <inheritdoc/> | 273 | /// <inheritdoc/> |
274 | public void SetDownloadSource(string packageOrContainerId, string payloadId, string url, string user, string password) | 274 | public void SetDownloadSource(string packageOrContainerId, string payloadId, string url, string user, string password, string authorizationHeader) |
275 | { | 275 | { |
276 | this.engine.SetDownloadSource(packageOrContainerId, payloadId, url, user, password); | 276 | this.engine.SetDownloadSource(packageOrContainerId, payloadId, url, user, password, authorizationHeader); |
277 | } | 277 | } |
278 | 278 | ||
279 | /// <inheritdoc/> | 279 | /// <inheritdoc/> |
diff --git a/src/api/burn/WixToolset.BootstrapperApplicationApi/IBootstrapperEngine.cs b/src/api/burn/WixToolset.BootstrapperApplicationApi/IBootstrapperEngine.cs index c7b0c003..172bafe8 100644 --- a/src/api/burn/WixToolset.BootstrapperApplicationApi/IBootstrapperEngine.cs +++ b/src/api/burn/WixToolset.BootstrapperApplicationApi/IBootstrapperEngine.cs | |||
@@ -129,14 +129,15 @@ namespace WixToolset.BootstrapperApplicationApi | |||
129 | ); | 129 | ); |
130 | 130 | ||
131 | /// <summary> | 131 | /// <summary> |
132 | /// See <see cref="IEngine.SetDownloadSource(string, string, string, string, string)"/>. | 132 | /// See <see cref="IEngine.SetDownloadSource(string, string, string, string, string, string)"/>. |
133 | /// </summary> | 133 | /// </summary> |
134 | void SetDownloadSource( | 134 | void SetDownloadSource( |
135 | [MarshalAs(UnmanagedType.LPWStr)] string wzPackageOrContainerId, | 135 | [MarshalAs(UnmanagedType.LPWStr)] string wzPackageOrContainerId, |
136 | [MarshalAs(UnmanagedType.LPWStr)] string wzPayloadId, | 136 | [MarshalAs(UnmanagedType.LPWStr)] string wzPayloadId, |
137 | [MarshalAs(UnmanagedType.LPWStr)] string wzUrl, | 137 | [MarshalAs(UnmanagedType.LPWStr)] string wzUrl, |
138 | [MarshalAs(UnmanagedType.LPWStr)] string wzUser, | 138 | [MarshalAs(UnmanagedType.LPWStr)] string wzUser, |
139 | [MarshalAs(UnmanagedType.LPWStr)] string wzPassword | 139 | [MarshalAs(UnmanagedType.LPWStr)] string wzPassword, |
140 | [MarshalAs(UnmanagedType.LPWStr)] string wzAuthorizationHeader | ||
140 | ); | 141 | ); |
141 | 142 | ||
142 | /// <summary> | 143 | /// <summary> |
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 | ||
diff --git a/src/api/burn/WixToolset.BootstrapperApplicationApi/IEngine.cs b/src/api/burn/WixToolset.BootstrapperApplicationApi/IEngine.cs index bd78409b..ca423309 100644 --- a/src/api/burn/WixToolset.BootstrapperApplicationApi/IEngine.cs +++ b/src/api/burn/WixToolset.BootstrapperApplicationApi/IEngine.cs | |||
@@ -174,7 +174,8 @@ namespace WixToolset.BootstrapperApplicationApi | |||
174 | /// <param name="url">The new url.</param> | 174 | /// <param name="url">The new url.</param> |
175 | /// <param name="user">The user name for proxy authentication.</param> | 175 | /// <param name="user">The user name for proxy authentication.</param> |
176 | /// <param name="password">The password for proxy authentication.</param> | 176 | /// <param name="password">The password for proxy authentication.</param> |
177 | void SetDownloadSource(string packageOrContainerId, string payloadId, string url, string user, string password); | 177 | /// <param name="authorizationHeader">Additional proxy authentication header. Not currently used.</param> |
178 | void SetDownloadSource(string packageOrContainerId, string payloadId, string url, string user, string password, string authorizationHeader); | ||
178 | 179 | ||
179 | /// <summary> | 180 | /// <summary> |
180 | /// Sets numeric variables for the engine. | 181 | /// Sets numeric variables for the engine. |