Provides an HttpWorkerRequest that is used by the ASP.Net runtime.
Inheritance: System.Web.HttpWorkerRequest
コード例 #1
0
ファイル: AspNetHandler.cs プロジェクト: Cayan-LLC/netty
        public bool ProcessRequest(IHttpContext context)
        {
            var workerRequest = new AspServerRequest(context, this.VirtualPath, this.PhysicalPath);

            HttpRuntime.ProcessRequest(workerRequest);

            return true;
        }
コード例 #2
0
        public bool ProcessRequest(IHttpContext context)
        {
            var workerRequest = new AspServerRequest(context, this.VirtualPath, this.PhysicalPath);

            HttpRuntime.ProcessRequest(workerRequest);

            return(true);
        }