/// <summary>
		/// Initializes a new instance of the HttpChunkedBody class
		/// </summary>
		public HttpChunkedBody()
		{
			_chunks = new HttpChunkList();
			_trailer = new HttpHeaderList();
		}
 /// <summary>
 /// Initializes a new instance of the HttpChunkedBody class
 /// </summary>
 public HttpChunkedBody()
 {
     _chunks  = new HttpChunkList();
     _trailer = new HttpHeaderList();
 }