public HttpMultipart(Stream requestStream, string boundary)
                {
                    _requestStream = requestStream;
                    var boundaryAsBytes = GetBoundaryAsBytes(boundary);

                    _readBuffer = new HttpMultipartBuffer(boundaryAsBytes);
                }
 public HttpMultipartBufferFixture()
 {
     this.boundary = GetBoundaryAsBytes();
     this.buffer = new HttpMultipartBuffer(this.boundary, new byte[1]);
 }
 public HttpMultipartBufferFixture()
 {
     this.boundary = GetBoundaryAsBytes();
     this.buffer   = new HttpMultipartBuffer(this.boundary, new byte[1]);
 }