• 大小: 4.33KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-27
  • 语言: C#
  • 标签: http  c  

资源简介

httpclient source code by csharp

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Net;
using System.Web;

namespace Deerchao.Utility
{
    public class HttpClient
    {
        #region fields
        private bool keepContext;
        private string defaultLanguage = “zh-CN“;
        private Encoding defaultEncoding = Encoding.UTF8;
        private string accept = “*/*“;
        private string userAgent = “Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)“;
        private HttpVerb verb = HttpVerb.GET;
        private HttpClientContext context;
        private readonly List files = new List();
        private readonly Dictionary postingData = new Dictionary();
        private string url;
        private WebHeaderCollection responseHeaders;
        private int startPoint;
        private int endPoint;
        #endregion

        #reg

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       21058  2007-08-11 18:27  HttpClient.cs

评论

共有 条评论