Castle.MicroKernel.Lifestyle.Tests.HttpModuleRunner.Run C# (CSharp) Method

Run() public static method

public static Run ( System.Web.HttpWorkerRequest wr ) : HttpContext
wr System.Web.HttpWorkerRequest
return System.Web.HttpContext
        public static HttpContext Run(HttpWorkerRequest wr, params IHttpModule[] modules) {
            var kv = GetContext(wr, modules);
            ProcessRequest(kv.Value, kv.Key);
            return kv.Key;
        }