79

有没有办法让我捕获到我的 ASP.NET MVC 4 应用程序的所有传入请求并运行一些代码,然后再继续请求到指定的控制器/操作?

我需要使用现有服务运行一些自定义身份验证代码,并且要正确执行此操作,我需要能够拦截来自所有客户端的所有传入请求,以仔细检查其他服务的某些内容。

4

4 回答 4

81

最正确的方法是创建一个继承ActionFilterAttribute和 overrideOnActionExecuting方法的类。然后可以在GlobalFiltersin中注册Global.asax.cs

当然,这只会拦截实际有路由的请求。

于 2012-07-30T17:54:22.387 回答
38

您可以使用 HttpModule 来完成此操作。这是我用来计算所有请求的处理时间的示例:

using System;
using System.Diagnostics;
using System.Web;

namespace Sample.HttpModules
{
    public class PerformanceMonitorModule : IHttpModule
    {

        public void Init(HttpApplication httpApp)
        {
            httpApp.BeginRequest += OnBeginRequest;
            httpApp.EndRequest += OnEndRequest;
            httpApp.PreSendRequestHeaders += OnHeaderSent;
        }

        public void OnHeaderSent(object sender, EventArgs e)
        {
            var httpApp = (HttpApplication)sender;
            httpApp.Context.Items["HeadersSent"] = true;
        }

        // Record the time of the begin request event.
        public void OnBeginRequest(Object sender, EventArgs e)
        {
            var httpApp = (HttpApplication)sender;
            if (httpApp.Request.Path.StartsWith("/media/")) return;
            var timer = new Stopwatch();
            httpApp.Context.Items["Timer"] = timer;
            httpApp.Context.Items["HeadersSent"] = false;
            timer.Start();
        }

        public void OnEndRequest(Object sender, EventArgs e)
        {
            var httpApp = (HttpApplication)sender;
            if (httpApp.Request.Path.StartsWith("/media/")) return;
            var timer = (Stopwatch)httpApp.Context.Items["Timer"];

            if (timer != null)
            {
                timer.Stop();
                if (!(bool)httpApp.Context.Items["HeadersSent"])
                {
                    httpApp.Context.Response.AppendHeader("ProcessTime",
                                                          ((double)timer.ElapsedTicks / Stopwatch.Frequency) * 1000 +
                                                          " ms.");
                }
            }

            httpApp.Context.Items.Remove("Timer");
            httpApp.Context.Items.Remove("HeadersSent");

        }

        public void Dispose() { /* Not needed */ }
    }

}

这就是您在 Web.Config 中注册模块的方式:

<system.webServer>
    <modules runAllManagedModulesForAllRequests="true">
        <add name="PerformanceMonitorModule" type="Sample.HttpModules.PerformanceMonitorModule" />
    </modules>
<//system.webServer>
于 2012-07-30T17:57:54.217 回答
25

我认为您搜索的是:

Application_BeginRequest()

http://www.dotnetcurry.com/showarticle.aspx?ID=126

你把它放进去Global.asax.cs

    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        HttpContext.Current.Request.....;
    }

我将其用于调试目的,但我不确定它对您的情况有多好。

于 2013-12-10T08:44:11.483 回答
2

我不确定 MVC4,但我认为它与 MVC5 非常相似。如果您已经创建了一个新的 Web 项目 -> 查看,您应该会在方法中 Global.asax看到以下行。FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);Application_Start()

RegisterGlobalFiltersFilterConfig.cs是位于文件夹中的文件中的一个方法App_Start

正如@YngveB-Nilsen 所说ActionFilterAttribute,我认为这是要走的路。添加一个派生自System.Web.Mvc.ActionFilterAttribute. 这很重要,因为System.Web.Http.Filters.ActionFilterAttribute例如会因以下异常而失败。

给定的过滤器实例必须实现以下一个或多个过滤器接口:System.Web.Mvc.IAuthorizationFilter、System.Web.Mvc.IActionFilter、System.Web.Mvc.IResultFilter、System.Web.Mvc.IExceptionFilter、System.Web .Mvc.Filters.IAuthenticationFilter。

将请求写入调试窗口的示例:

public class DebugActionFilter : System.Web.Mvc.ActionFilterAttribute
{
  public override void OnActionExecuting(ActionExecutingContext actionContext)
  {
    Debug.WriteLine(actionContext.RequestContext.HttpContext.Request);
  }
}

FilterConfig-> RegisterGlobalFilters-> 中添加以下行:filters.Add(new DebugActionFilter());.

您现在可以捕获所有传入请求并修改它们。

于 2018-01-25T13:07:00.360 回答