Good day! I would like to check on the site counter visitors. I have several proxies and I wanted to make a small program to enter the site, under different proxies.
public void Webrequest(string url, string proxy) { try { var request = WebRequest.Create(url); WebProxy proxyObject = new WebProxy(proxy, true); proxyObject.BypassProxyOnLocal = false; request.Proxy = proxyObject; } catch(Exception e) { MessageBox.Show(e.ToString()); } } But it does not work, it still uses my IP address when requesting it.