قرار دادن پروکسی برای ویندوز
using Microsoft.Win32;
public static void SetProxy(string Host, string Port)
{
RegistryKey registry = Registry.CurrentUser.OpenSubKey("Software\\Microso ft\\Windows\\CurrentVersion\\Internet Settings", true);
registry.SetValue("ProxyEnable", 1);
registry.SetValue("ProxyServer", Host + ":"+ Port);
}
public static void DeleteProxy(string Host, string Port)
{
RegistryKey registry = Registry.CurrentUser.OpenSubKey("Software\\Microso ft\\Windows\\CurrentVersion\\Internet Settings", true);
registry.SetValue("ProxyEnable", 0);
registry.DeleteValue("ProxyServer");
}