摘要: public class TestController : Controller { [ThreadStatic] static ThreadInfo obj; [HttpGet] public string Index() { return "123456"; } [HttpGet] public 阅读全文
posted @ 2020-12-01 12:31 dint 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 名称 描述 BeginRequest HTTP管道开始处理请求时,会触发BeginRequest事件 AuthenticateRequest,PostAuthenticateRequest ASP.NET先后触发这两个事件,使安全模块对请求进行身份验证 AuthorizeRequest,PostAu 阅读全文
posted @ 2020-12-01 11:54 dint 阅读(177) 评论(0) 推荐(0) 编辑
摘要: //MVC 处理流程public class UrlRoutingModule : IHttpModule{ //mvc框架注册了一个IHttpModule 在里面注册了PostResolveRequestCache事件来处理请求路由 protected virtual void Init(Http 阅读全文
posted @ 2020-12-01 11:52 dint 阅读(156) 评论(0) 推荐(0) 编辑