public HttpContextStub (string dummyRequestPath, string pathInfo, string method)
		{
			if (dummyRequestPath != null) {
				req = new HttpRequestStub (dummyRequestPath, pathInfo);
				req.Method = method;
			}
		}
Example #2
0
 public HttpContextStub(string dummyRequestPath, string pathInfo, string method)
 {
     if (dummyRequestPath != null)
     {
         req        = new HttpRequestStub(dummyRequestPath, pathInfo);
         req.Method = method;
     }
 }
Example #3
0
		public void SetRequest (HttpRequestStub request)
		{
			this.request = request;
		}
Example #4
0
 public void SetRequest(HttpRequestStub request)
 {
     this.request = request;
 }