public ProgressWorkerRequest(HttpWorkerRequest wr, HttpRequest request)
 {
     this._originalWorkerRequest = wr;
     this._request = request;
     this._boundary = this.GetBoundary(this._request);
     this._requestStateStore = new RequestStateStore(this._request.ContentEncoding);
 }
Esempio n. 2
0
 public RequestParser(byte[] boundary, System.Text.Encoding encoding, RequestStateStore requestStateStore)
 {
     this._boundary                = boundary;
     this._encoding                = encoding;
     this._requestStateStore       = requestStateStore;
     this._searchedContentBoundary = this.FirstBoundary;
 }
 public RequestParser(byte[] boundary, System.Text.Encoding encoding, RequestStateStore requestStateStore)
 {
     this._boundary = boundary;
     this._encoding = encoding;
     this._requestStateStore = requestStateStore;
     this._searchedContentBoundary = this.FirstBoundary;
 }
Esempio n. 4
0
 public ProgressWorkerRequest(HttpWorkerRequest wr, HttpRequest request)
 {
     this._originalWorkerRequest = wr;
     this._request           = request;
     this._boundary          = this.GetBoundary(this._request);
     this._requestStateStore = new RequestStateStore(this._request.ContentEncoding);
 }
Esempio n. 5
0
 internal RadUploadContext(int requestLength, RequestStateStore stateStore)
 {
     this.RequestLength = requestLength;
     this.StateStore    = stateStore;
 }
 internal RadUploadContext(int requestLength, RequestStateStore stateStore)
 {
     this.RequestLength = requestLength;
     this.StateStore = stateStore;
 }