You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 21, 2026. It is now read-only.
How do you use ScrapingBrowser to download web resource files? I would love this feature but don't see how to save to disk.
For example, I am able to achieve this by adding to ScrapingBrowser:
public WebResource DownloadWebResourceFile(Uri url, string path, FileMode mode)
{
var response = ExecuteRequest(url, HttpVerb.Get, new NameValueCollection());
var stream = new FileStream(path, mode);
var responseStream = response.GetResponseStream();
if (responseStream != null)
responseStream.CopyTo(stream);
responseStream.Close();
return new WebResource(stream, response.Headers["Last-Modified"], url, !IsCached(response.Headers["Cache-Control"]), response.ContentType);
}
How do you use ScrapingBrowser to download web resource files? I would love this feature but don't see how to save to disk.
For example, I am able to achieve this by adding to ScrapingBrowser:
Thank you.