Trying to add functionality to MvcHandler

I am currently trying to add 301 redirects to my routes in MVC

To do this, I tried to inherit MvcHandler. The handler gets the correct values. but I can never debug overridden methods.

Can someone show me a working try? the asp.net pipe just seems to be doing its job ...

public class CodeHttpHandler : MvcHandler
{
    public CodeHttpHandler(RequestContext p_requestContext)
            : base(p_requestContext)
    {
    }
    protected override void ProcessRequest(HttpContext p_httpContext)
    {
    }
    protected override void ProcessRequest(HttpContextBase p_httpContext)
    {
    }
}

Update:

These are the solutions that I have found so far:

public class CodeRouteHandler : IRouteHandler
{
    public System.Web.IHttpHandler GetHttpHandler(RequestContext requestContext)
    {
        return new CodeHandler(requestContext);
    }
}

public class CodeRouteConstants
{
    public const string CODE = "code";
    public const string REDIRECT = "Redirect";
}

public class CodeHandler : MvcHandler
{
    public CodeHandler(RequestContext requestContext)
        : base(requestContext)
    {
    }

    private int? HandleCodedRoute(System.Web.HttpContextBase httpContext)
    {
        var context = httpContext.Request.RequestContext.RouteData;
        if (context.DataTokens.ContainsKey(CodeRouteConstants.CODE))
        {
            var statusCode = Int32.Parse(context.DataTokens[CodeRouteConstants.CODE] as string ?? "500");

            httpContext.Response.StatusCode = statusCode;

            if (context.DataTokens.ContainsKey(CodeRouteConstants.REDIRECT))
            {
                var redirectionMap = context.DataTokens[CodeRouteConstants.REDIRECT] as string ?? "404";

                foreach (var v in context.Values)
                {
                    redirectionMap = redirectionMap.Replace(string.Format("{{{0}}}", v.Key), v.Value as string);
                }

                httpContext.Response.AddHeader("Location", redirectionMap);
            }

            httpContext.Response.End();
            return statusCode;
        }
        return null;
    }

    protected override System.IAsyncResult BeginProcessRequest(System.Web.HttpContext httpContext, System.AsyncCallback callback, object state)
    {
        var statusCode = HandleCodedRoute(new HttpContextWrapper(httpContext));
        if (statusCode.HasValue)
        {
            return null;
        }
        return base.BeginProcessRequest(httpContext, callback, state);
    }

    protected override System.IAsyncResult BeginProcessRequest(System.Web.HttpContextBase httpContext, System.AsyncCallback callback, object state)
    {
        return base.BeginProcessRequest(httpContext, callback, state);
    }

    protected override void ProcessRequest(System.Web.HttpContext httpContext)
    {
        base.ProcessRequest(httpContext);
    }
    protected override void ProcessRequest(System.Web.HttpContextBase httpContext)
    {
        base.ProcessRequest(httpContext);
    }
}
+3
source share
1 answer

, . ProcessRequest() . , , , . BeginProcessRequest() MvcHandler ProcessRequest(). ( ), , .

+2

Source: https://habr.com/ru/post/1745583/


All Articles