资源简介
模拟请求,基于HttpWebRequest封装好的一个类,自动记下和发送Cookie,你只管调用方法就行了,很实用
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.IO;
using System.Drawing;
using System.Text.Regularexpressions;
namespace QQLogin
{
public class HttpHelper
{
private CookieContainer cc;
private string responseUrl = string.Empty;
private string setCookie = string.Empty;
public CookieContainer CC
{
get
{
return cc;
}
set
{
this.cc = value;
}
}
public string ResponseUrl
{
get
{
return responseUrl;
}
set
{
this.responseUrl = value;
- 上一篇:adsl拨号程序(C#)
- 下一篇:网络信息智能采集系统
评论
共有 条评论