如何在ASP.NET 5中处理以前的全局事件处理程序?

时间:2015-10-05 07:19:20

标签: asp.net owin

实际上,我们使用ASP.NET 4.5(VS 2013)并希望将Global.asax.cs替换为来自OWIN规范的新Startup.cs文件。

我们以这种方式使用Application_Start和Application_End处理程序记录应用程序的开始和结束:

protected void Application_Start(object sender, EventArgs e)
{
    _log.Info("The app starts.");
}

protected void Application_End(object sender, EventArgs e)
{
    _log.Info("The app ends.");
}

但是,据我所知,新的Startup.cs文件中没有这样的处理程序。所以,我的问题是 - 我们怎么能这样做?

1 个答案:

答案 0 :(得分:0)

您已经知道应用程序何时启动,因为Startup.cs正在执行。对于Application_End事件,请查看此答案:Is there Application_End from Global.asax in Owin?