We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do Downloader support socks5 proxy? How I do use socks5 proxy?
The text was updated successfully, but these errors were encountered:
Hi @mnt-github, You can add your proxy config inside the DownloadConfiguration object like this:
DownloadConfiguration
var config = new DownloadConfiguration { ParallelDownload = true, ParallelCount = 8, Timeout = 3000, RequestConfiguration = { // config and customize request headers Accept = "*/*", CookieContainer = cookies, Proxy = new WebProxy(new Uri($"socks5://127.0.0.1:9050")) } };
Sorry, something went wrong.
Thanks @bezzad. Which .NET Framework version does the above example work on? I'm working on 4.7.2. Downloader don't recognize socks5 proxy.
@mnt-github .Net 4.5.2 and above and all of .Net Core versions
bezzad
No branches or pull requests
Do Downloader support socks5 proxy?
How I do use socks5 proxy?
The text was updated successfully, but these errors were encountered: