コード例 #1
0
ファイル: HttpContextInfo.cs プロジェクト: pmq20/mono_forked
 public HttpStandaloneContextInfo(HttpListenerContext ctx)
 {
     this.ctx = ctx;
     request  = new HttpStandaloneRequestInfo(ctx.Request);
     response = new HttpStandaloneResponseInfo(ctx.Response);
 }
コード例 #2
0
ファイル: HttpContextInfo.cs プロジェクト: afaerber/mono
		public HttpStandaloneContextInfo (HttpListenerContext ctx)
		{
			this.ctx = ctx;
			request = new HttpStandaloneRequestInfo (ctx.Request);
			response = new HttpStandaloneResponseInfo (ctx.Response);
		}