2009-06-21 4 views
6

MSDNのサンプル

HttpWebRequest myWebRequest=(HttpWebRequest)WebRequest.Create("http://www.microsoft.com"); 
WebProxy myProxy=new WebProxy(); 
// Obtain the 'Proxy' of the Default browser. 
myProxy=(WebProxy)myWebRequest.Proxy; 

が動作しないデフォルトのWebブラウザのプロキシ設定を検出します。 私は次のエラーが表示されます:タイプ 'WebProxyWrapper'のオブジェクトを 'System.Net.WebProxy'にキャストすることができません

どのようなオプションがありますか

答えて

-2

は、設定を検出し、自動的にチェックコードを使用するには:このコードは確かに設定をチェックしません

RegistryKey registry = Registry.CurrentUser.OpenSubKey(
    "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings", true); 
registry.SetValue("ProxyEnable", 0); 
RegistryKey registry2 = Registry.CurrentUser.OpenSubKey(
    "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Connections", true); 
registry2.DeleteValue("DefaultConnectionSettings", false); 
registry2.DeleteValue("SavedLegacySettings", false); 
+0

が、変更とは、それらを削除します。 – psouza4