web-dev-qa-db-ja.com

C#でプログラムでブラウザープロキシ設定を設定する

Internet Explorerのプロキシ設定を設定し、新しいブラウザーウィンドウを開く必要があるwinformsアプリを書いています。現時点では、レジストリにアクセスしてプロキシ設定を適用しています。

RegistryKey registry = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings", true);
registry.SetValue("ProxyEnable", 1);
registry.SetValue("ProxyServer", "127.0.0.1:8080");

これを行うにはbestの方法でレジストリに入りますか、それともより推奨されるアプローチがありますか?別の解決策がある場合、レジストリの変更を避けたい。

34
John Miller

これは、正確なニーズにいくらか依存します。 C#アプリを作成していて、アプリが使用する既定のプロキシ設定を設定するだけの場合は、クラスSystem.Net.GlobalProxySelection( http://msdn.Microsoft.com/en-us/library /system.net.globalproxyselection.aspx )。 System.Net.WebProxyを使用して特定の接続のプロキシを設定することもできます( http://msdn.Microsoft.com/en-us/library/system.net.webproxy.aspx )。

実際にレジストリのプロキシ設定を更新する場合は、P/Invokeを使用してWinAPI関数WinHttpSetDefaultProxyConfiguration( http://msdn.Microsoft.com/en-us/ library/aa384113.aspx )。

21
JSBձոգչ

from: http://social.msdn.Microsoft.com/Forums/en/csharpgeneral/thread/19517edf-8348-438a-a3da-5fbe7a46b61a

コードの先頭に次の行を追加します。

system.Runtime.InteropServicesを使用します。 Microsoft.Win32を使用。

    [DllImport("wininet.dll")]
    public static extern bool InternetSetOption(IntPtr hInternet, int dwOption, IntPtr lpBuffer, int dwBufferLength);
    public const int INTERNET_OPTION_SETTINGS_CHANGED = 39;
    public const int INTERNET_OPTION_REFRESH = 37;
    bool settingsReturn, refreshReturn;

そしてコードを暗示します:

        RegKey.SetValue("ProxyServer", YOURPROXY);
        RegKey.SetValue("ProxyEnable", 1);

        // These lines implement the Interface in the beginning of program 
        // They cause the OS to refresh the settings, causing IP to realy update
        settingsReturn = InternetSetOption(IntPtr.Zero, INTERNET_OPTION_SETTINGS_CHANGED, IntPtr.Zero, 0);
        refreshReturn = InternetSetOption(IntPtr.Zero, INTERNET_OPTION_REFRESH, IntPtr.Zero, 0);
19
chris

それを行うために10行のプログラムを作成しました。お気軽に https://github.com/131/proxytoggle

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using Microsoft.Win32;

namespace ProxyToggle
{

    class Program
    {

        [DllImport("wininet.dll")]
        public static extern bool InternetSetOption(IntPtr hInternet, int dwOption, IntPtr lpBuffer, int dwBufferLength);
        public const int INTERNET_OPTION_SETTINGS_CHANGED = 39;
        public const int INTERNET_OPTION_REFRESH = 37;


        static void setProxy(string proxyhost, bool proxyEnabled)
        {
            const string userRoot = "HKEY_CURRENT_USER";
            const string subkey = "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings";
            const string keyName = userRoot + "\\" + subkey;

            Registry.SetValue(keyName, "ProxyServer", proxyhost);
            Registry.SetValue(keyName, "ProxyEnable", proxyEnabled?"1": "0");

            // These lines implement the Interface in the beginning of program 
            // They cause the OS to refresh the settings, causing IP to realy update
            InternetSetOption(IntPtr.Zero, INTERNET_OPTION_SETTINGS_CHANGED, IntPtr.Zero, 0);
            InternetSetOption(IntPtr.Zero, INTERNET_OPTION_REFRESH, IntPtr.Zero, 0);
        }

        static void Main(string[] args)
        {
            if (args.Length == 0)
            {
                setProxy("", false);
                return;
            }

            setProxy(args[0], true);
        }
    }
}
10
131

あなたがやろうとしていることを具体的にタグ付けしたこのKB記事をご覧ください。

http://support.Microsoft.com/kb/22647

短いバージョンでは、InternetOpen、InternetSetOption APIを使用してプロキシ設定を更新します。

6
JaredPar

FW 2.0以降に存在するこの便利な方法を使用できます。

http://msdn.Microsoft.com/en-us/library/system.net.webrequest.getsystemwebproxy.aspx

3
Naim Raja Díaz