Пример #1
0
 public AspNetHttpContextInfo(SvcHttpHandler handler, HttpContext ctx)
 {
     this.ctx      = ctx;
     this.handler  = handler;
     this.request  = new AspNetHttpRequestInfo(ctx.Request);
     this.response = new AspNetHttpResponseInfo(ctx.Response);
 }
Пример #2
0
		public AspNetHttpContextInfo (SvcHttpHandler handler, HttpContext ctx)
		{
			this.ctx = ctx;
			this.handler = handler;
			this.request = new AspNetHttpRequestInfo (ctx.Request);
			this.response = new AspNetHttpResponseInfo (ctx.Response);
		}