diff options
author | Bob Arnson <bob@firegiant.com> | 2025-04-01 16:48:38 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2025-04-01 16:48:38 -0400 |
commit | 28fd5a981792e0ba4eeeb5d2ac431d12e1c214ec (patch) | |
tree | f28efef38caaa0980ea24e5fa674f952646b649b /src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs | |
parent | ed19d167c0d3071709a72143f106dbb5efdddeba (diff) | |
download | wix-bob/FixIEngineSetDownloadSource.tar.gz wix-bob/FixIEngineSetDownloadSource.tar.bz2 wix-bob/FixIEngineSetDownloadSource.zip |
Sync IEngine.SetDownloadSource with native side.bob/FixIEngineSetDownloadSource
Fixes https://github.com/wixtoolset/issues/issues/9018
Diffstat (limited to 'src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs')
-rw-r--r-- | src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs | 4 |
1 files changed, 2 insertions, 2 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/> |