標籤:
其實在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