Rank: Newbie Groups: Member
Joined: 11/13/2015 Posts: 1
|
Hi, I need to manage the download its raised in the web browser product, I can see that its possible to specify the physical path, but I need to avoid writing in disk, instead I prefer getting the file in a memory stream object.
void _webView_BeforeDownload(object sender, BeforeDownloadEventArgs e) { e.ShowDialog = false; e.FilePath = somePath; //Is there a way to save the file in memory stream? }
Regards.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
Hi,
No. There is no way for you do download in memory only. You must use a file. Sorry about it!
Thanks
|