Blaze.MvcApplication.Application_BeginRequest C# (CSharp) Méthode

Application_BeginRequest() protected méthode

protected Application_BeginRequest ( ) : void
Résultat void
        protected void Application_BeginRequest()
        {
            var context = HttpContext.Current;
            var bundle = context.Request["bundle"];
            if( bundle != null)
            {
                BundleTable.EnableOptimizations = bundle != "0" && bundle != "false";
            }
        }