日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程语言 > C# >内容正文

C#

C# WebBrowser 设置代理

發(fā)布時(shí)間:2024/9/5 C# 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 C# WebBrowser 设置代理 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

微軟webbrowser控件也就是IE插件,他的所有功能就像IE類似,當(dāng)然設(shè)置也是一樣的,下面介紹下webbrowser如何設(shè)置代理

?

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;


namespace 網(wǎng)頁(yè)刷新測(cè)試
{
??? public partial class Form1 : Form
??? {
??????? [DllImport("wininet.dll", SetLastError = true)]
??????? private static extern bool InternetSetOption(IntPtr hInternet, int dwOption, IntPtr lpBuffer, int lpdwBufferLength);

??????? public Form1()
??????? {
??????????? InitializeComponent();
??????????? RefreshIESettings("183.203.12.21:80");
??????????? webBrowser1.Navigate("http://www.sunwale.com/");

??????? }

??????? 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));
??????? }


??? }

??? public struct Struct_INTERNET_PROXY_INFO
??? {
??????? public int dwAccessType;
??????? public IntPtr proxy;
??????? public IntPtr proxyBypass;
??? };

}

?

轉(zhuǎn)載于:https://www.cnblogs.com/deng02/archive/2012/06/15/2551430.html

總結(jié)

以上是生活随笔為你收集整理的C# WebBrowser 设置代理的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。