Asp.Net MVC OnSessionStart事件

我发现这个线程描述了一个非常有趣的OnSessionStart事件,但是我无法把它(不pipe它的意思)“钩”到我的global.asax.cs中。 在search网页时我也没有成功。 所以有人请向我解释,如果事件真的存在于asp.net mvc中,我在哪里得到它(inheritance或从哪里),我把它放在哪里?

它看起来像这样:

void Session_Start(object sender, EventArgs e) { // your code here, it will be executed upon session start } 

它在Asp.net MVC中工作。
把它作为Global.asax.cs中定义的类中的一个方法,例如在RegisterRoutes方法之后。