Hi, I tried to use Engine.Options.Proxy to set socks5 proxy and it does't work.
Code: C#
engine1.Options.Proxy = new ProxyInfo(ProxyType.Socks5, strIPadd, intPort, strName, strPass);
the webbrowser always return error message:
Failed establishing a connection to the SOCKS proxy server for a target host.If I modify socks5 server to remove authenticate, then code will run correct.
PS: I can make sure the socks5 proxy server is working properly.