苏飞论坛

标题: 万能框架--设置本地的出口ip和端口 [打印本页]

作者: 站长苏飞    时间: 2015-8-11 10:33
标题: 万能框架--设置本地的出口ip和端口
导读部分

【HttpHelper万能框架】教程目录贴  http://www.sufeinet.com/thread-9989-1-1.html
【HttpHelper万能框架】源码购买帖  http://www.sufeinet.com/thread-9926-1-1.html

本功能可在线测试http://tool.sufeinet.com/HttpHel ...http://sufeinet.com
教程部分


[C#] 纯文本查看 复制代码

            //创建Httphelper对象
            HttpHelper http = new HttpHelper();
            //创建Httphelper参数对象
            HttpItem item = new HttpItem()
            {
                URL = "http://www.sufeinet.com",//URL     必需项   
                Method = "get",//URL     可选项 默认为Get   
                ContentType = "text/html",//返回类型    可选项有默认值   
                //ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值  
                IPEndPoint = new IPEndPoint(IPAddress.Parse("192.168.1.1"), 80)
            };
            //请求的返回值对象
            HttpResult result = http.GetHtml(item);
            //获取请请求的Html
            string html = result.Html;
            //获取请求的Cookie
            string cookie = result.Cookie;


只要通过这一句就可以实现,配置出口IP了
[C#] 纯文本查看 复制代码
IPEndPoint = new IPEndPoint(IPAddress.Parse("192.168.1.1"), 80)

他的做用主要是用于一个电脑有多个IP时使用




作者: Cheungnotes    时间: 2015-8-11 14:13
幸苦了
作者: 水手    时间: 2015-8-12 08:17
支持站长。
作者: 阿辉    时间: 2015-8-12 14:20
赞一个
作者: zchyua    时间: 2015-9-19 19:42
这个功能   如果本机就一个网卡就一个ip   可以虚拟ip吗?
作者: 站长苏飞    时间: 2015-9-21 09:08
zchyua 发表于 2015-9-19 19:42
这个功能   如果本机就一个网卡就一个ip   可以虚拟ip吗?

不可以




欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4