Ejemplo n.º 1
0
 public HttpContextStub(string dummyRequestPath, string pathInfo, string method)
 {
     if (dummyRequestPath != null)
     {
         req        = new HttpRequestStub(dummyRequestPath, pathInfo);
         req.Method = method;
     }
 }
Ejemplo n.º 2
0
		public HttpContextStub (string dummyRequestPath, string pathInfo, string method)
		{
			if (dummyRequestPath != null) {
				req = new HttpRequestStub (dummyRequestPath, pathInfo);
				req.Method = method;
			}
		}