asp.net – Global.asax PostAuthenticateRequest事件绑定是如何发生的?

如何使用Global.asax的PostAuthenticateRequest事件?我正在关注 this tutorial,它提到我必须使用PostAuthenticateRequest事件.当我添加Global.asax事件时,它创建了两个文件,标记代码隐藏文件.这是代码隐藏文件内容
using System;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;

namespace authentication
{
    public class Global : System.Web.HttpApplication
    {    
        protected void Application_Start(object sender,EventArgs e)
        {    
        }

        protected void Session_Start(object sender,EventArgs e)
        {    
        }

        protected void Application_BeginRequest(object sender,EventArgs e)
        {
        }

        protected void Application_AuthenticateRequest(object sender,EventArgs e)
        {    
        }

        protected void Application_Error(object sender,EventArgs e)
        {    
        }

        protected void Session_End(object sender,EventArgs e)
        {    
        }

        protected void Application_End(object sender,EventArgs e)
        {    
        }
    }
}

现在我打字的时候

protected void Application_OnPostAuthenticateRequest(object sender,EventArgs e)

它被成功调用.现在我想知道PostAuthenticateRequest是如何绑定到这个Application_OnPostAuthenticateRequest方法的?如何将方法更改为其他方法

解决方法

Magic …,一种叫做Auto Event Wireup的机制,与你可以编写的原因相同
Page_Load(object sender,EventArgs e) 
{ 
}

在您的代码隐藏中,该方法将在页面加载时自动调用.

MSDN description for System.Web.Configuration.PagesSection.AutoEventWireup property

Gets or sets a value indicating whether events for ASP.NET pages are automatically connected to event-handling functions.

当AutoEventWireup为true时,处理程序会根据其名称和签名在运行时自动绑定到事件.对于每个事件,ASP.NET都会搜索根据模式Page_eventname()命名的方法,例如Page_Load()或Page_Init(). ASP.NET首先查找具有典型事件处理程序签名的重载(即,它指定Object和EventArgs参数).如果找不到具有此签名的事件处理程序,ASP.NET将查找没有参数的重载.更多详情,请见this answer.

如果你想明确地这样做,你会写下面的内容

public override void Init()
{
    this.PostAuthenticateRequest +=
        new EventHandler(MyOnPostAuthenticateRequestHandler);
    base.Init();
}

private void MyOnPostAuthenticateRequestHandler(object sender,EventArgs e)
{
}

相关文章

项目要求通过网站上传大文件,比如视频文件,通过摸索实现了文件分片来上传,然后后台进行合并。 使用了...
安装新版本的Nginx(vim /etc/yum.repos.d/nginx.repo) [nginx-stable] name=nginx stable repo baseu...
什么是 SignalR ASP.NET Core ASP.NET Core SignalR 是一种开放源代码库,可简化将实时 web 功...
在Windows下使用Docker,我们选择Docker Desktop这个软件,非常方便。 ## Docker Desktop介绍及安装 Do...
项目开始设计的是运行在windows下,所以一开始采用的是windows服务模式来获取多媒体文件信息,后来要求...
银河麒麟高级服务器操作系统V10是针对企业级关键业务,适应虚拟化、云计算、大数据、工业互联网时代对主...