Replies: 1 comment 1 reply
-
Converting to discussion as this is unlikely a bug in There were major upstream changes recently. You can read about them in more detail at https://groups.google.com/g/cef-announce/c/s1WaovAopFo/m/LV5eiNX1BgAJStarting Many behaviors have changed.
As per https://github.com/cefsharp/CefSharp/blob/master/.github/ISSUE_TEMPLATE/bug_report.yml Have you tested the current supported version? At time of writing If it doesn't work in If that doesn't work then the best place to ask is on https://www.magpcss.org/ceforum/viewforum.php?f=6&sid=1eb1597a73e5c70e6211f420b9a10a60 |
Beta Was this translation helpful? Give feedback.
-
Is there an existing issue for this?
CefSharp Version
127.3.50
Operating System
Windows 10
Architecture
x64
.Net Version
4.6.2
Implementation
WinForms
Reproduction Steps
After upgrading CefSharp from 114.2.120 to 127.3.50 the multiple file download is not working
I am using the below angular code to download the xml file. Need to download 3 files.
this.serviceObj.saveTextAsFile(report1, report1);
this.serviceObj.saveTextAsFile(report2, report2);
this.serviceObj.saveTextAsFile(report3, report13);
saveTextAsFile(textToWrite: string, fileNameToSaveAs: string) {
}
Below is my custom Download handler code
public bool OnBeforeDownload(IWebBrowser chromiumWebBrowser, IBrowser browser, DownloadItem downloadItem, IBeforeDownloadCallback callback)
{
OnBeforeDownloadFired?.Invoke(this, downloadItem);
But only one file is getting downloaded. after that the download itself is not working. Please provide a solution
Expected behavior
3 xml files need to be downloaded.
Actual behavior
Only one file downloaded
Regression?
worked on CefSharp 114.2.120
Known Workarounds
no work arounds found
Does this problem also occur in the CEF Sample Application
Yes using WinForms command line args
Other information
no log infomation
Beta Was this translation helpful? Give feedback.
All reactions