C#webBrowser使用Proxy 伺服器的方法winform

來源:互聯網
上載者:User

標籤:

其實在C#中使用webBrowser大家應該都會了,論壇也有很多相前的例子大家可以查詢一下就知道了
但是像直接使用瀏覽器一樣設定代理 的方法可能很多人還不知道吧。
這個其實是調用一個Dll檔案進行設定的,
下面大家跟我一起來看看吧
首先還是要先建一個結構就是代理資訊的結構體
如下

[C#] 純文字查看 複製代碼?
010203040506070809 /// <summary>   /// 代理結構體   /// </summary>   public struct Struct_INTERNET_PROXY_INFO   {       public int dwAccessType;       public IntPtr proxy;//IP以及連接埠號碼       public IntPtr proxyBypass;   };


下面是如何 設定代理 的具體實現

[C#] 純文字查看 複製代碼?
01020304050607080910111213141516171819202122232425262728293031 /// <summary>        /// 設定代理的Api        /// </summary>        /// <returns></returns>        [DllImport("wininet.dll", SetLastError = true)]        private static extern bool InternetSetOption(IntPtr hInternet, int dwOption, IntPtr lpBuffer, int lpdwBufferLength);         /// <summary>        /// 代理IP以及連接埠號碼        /// </summary>        /// <param name="strProxy"></param>        private void RefreshIESettings(string strProxy)        {            const int INTERNET_OPTION_PROXY = 38;            const int INTERNET_OPEN_TYPE_PROXY = 3;             Struct_INTERNET_PROXY_INFO struct_IPI;             // Filling in structure             struct_IPI.dwAccessType = INTERNET_OPEN_TYPE_PROXY;            struct_IPI.proxy = Marshal.StringToHGlobalAnsi(strProxy);            struct_IPI.proxyBypass = Marshal.StringToHGlobalAnsi("local");             // Allocating memory             IntPtr intptrStruct = Marshal.AllocCoTaskMem(Marshal.SizeOf(struct_IPI));             // Converting structure to IntPtr             Marshal.StructureToPtr(struct_IPI, intptrStruct, true);             bool iReturn = InternetSetOption(IntPtr.Zero, INTERNET_OPTION_PROXY, intptrStruct, Marshal.SizeOf(struct_IPI));        }


使用的時候也非常的簡單

[C#] 純文字查看 複製代碼?
0102 RefreshIESettings("41.129.53.227:80");webBrowser1.Navigate("http://www.sufeinet.com");


這樣就可以了。
好了大家自己試試吧。

C#webBrowser使用Proxy 伺服器的方法winform

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.