Hello, I'm Hussein.
I am trying to use EO.WEB with visual studio c#.
I've had a few Problems.
I want to surf sites like google or youtube with a proxy ip. my problem is that
ProxyInfo proxy = new ProxyInfo(ProxyType.HTTP, "101.52.251.186", 8080);
Sites I want to browse
Supports ProxyType.HTTPS.
LoadUrl("https://google.com")
when i try to login
I'm getting the error (The connection was reset.) or it's accessing the site by chance. So it is not stable. If I edit it as ProxyType.HTTPS, it gives me the following error. (Could not create a connection to the proxy server). Can you give me a code directory to fix these errors? note/ I couldn't find enough resources, please do not scroll page by page. Thank you.
Code: C#
EO.WebEngine.Engine engine1 = EO.WebEngine.Engine.Create("test");
ProxyInfo proxy = new ProxyInfo(type: ProxyType.HTTP,host: "34.140.197.165",port: 8080);
engine1.Options.Proxy = proxy;
EO.WebBrowser.WebView webView1 = new EO.WebBrowser.WebView();
webView1.Engine = engine1;
webControl1.WebView = webView1;
webControl1.WebView.LoadUrl("https://google.com");