Can't get custom response filter attribute to trigger

710 Views Asked by At

I get the request filter attribute to trigger but the response filter never does. What am I missing?

[MyResponse]
[MyRequest]
public class MyService : Service
{
        public object Get(RequestDto request)
        {
            return new {foo = "bar"};
        }
}

public class MyResponseAttribute : ResponseFilterAttribute
{
    public override void Execute(IHttpRequest req, IHttpResponse res, object requestDto)
    {
        var x = requestDto;
    }
}

public class MyRequestAttribute : RequestFilterAttribute
{
    public override void Execute(IHttpRequest req, IHttpResponse res, object responseDto)
    {
        var x = responseDto;
    }
}
1

There are 1 best solutions below

2
On

I can't replicate this behaviour with the test I've just added here.

If you still think this is an issue with the framework, can you submit a failing unit test to the project (a pull-request is preferred).