哪个类将首先在PostAuthenticateRequest事件中触发

时间:2019-05-09 08:01:50

标签: c# asp.net model-view-controller httpmodule

我在其中拥有HttpModules文件夹:

  • SomeKindOfAuthenticateHttpModule.cs,
  • GetApplicationVersionHttpModule.cs,

两个类都实现接口IHttpModule。

我想在两个类的OnPostAuthenticateRequest()事件中触发

在第一堂课中,它将检查用户是否已通过身份验证,

在第二堂课中,它将检查用户是否正在运行最佳应用程序版本

现在,我很想知道,哪一堂课要上第一堂课?

Will it first authenticate and then check app version,

OR

Will it first check app version or authenticate?

我能以某种方式操纵它吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

解决了,

所有取决于我在Web.Config中放哪一个

例如:

<system.webServer>
<modules>
  <add name="I_Will_Trigger_First" />
  <add name="I_Will_Trigger_Second" />
</modules>
</system.webServer>