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