TransferRequestHandler.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Handlers / TransferRequestHandler.cs / 1551089 / TransferRequestHandler.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.Handlers { 
    using System; 
    using System.Web.Hosting;
 
    internal class TransferRequestHandler : IHttpHandler {

        public void ProcessRequest(HttpContext context) {
            IIS7WorkerRequest wr = context.WorkerRequest as IIS7WorkerRequest; 
            if (wr == null) {
                throw new PlatformNotSupportedException(SR.GetString(SR.Requires_Iis_Integrated_Mode)); 
            } 
            // Dev10 848405: use original unencoded URL (i.e., pass null for url so W3_REQUEST::SetUrl is not called)
            wr.ScheduleExecuteUrl(null, 
                                  null,
                                  null,
                                  true,
                                  context.Request.EntityBody, 
                                  null);
 
            // force the completion of the current request so that the 
            // child execution can be performed immediately after unwind
            context.ApplicationInstance.EnsureReleaseState(); 

            // DevDiv Bugs 162750: IIS7 Integrated Mode:  TransferRequest performance issue
            // Instead of calling Response.End we call HttpApplication.CompleteRequest()
            context.ApplicationInstance.CompleteRequest(); 
        }
 
        public bool IsReusable { 
            get {
                return true; 
            }
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK