/// <summary>
		/// Initializes a new instance of the HttpChunkedBody class
		/// </summary>
		public HttpChunkedBody()
		{
			_chunks = new HttpChunkCollection();
			_trailer = new HttpHeaderCollection();
		}
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the HttpChunkedBody class
 /// </summary>
 public HttpChunkedBody()
 {
     _chunks  = new HttpChunkCollection();
     _trailer = new HttpHeaderCollection();
 }