While in the ResponseFilters is there anyway to get the status code (and description) which is going back to the client?
Long explanation: I'm looking into adding a response header while I'm in a response filter. The issue is that in our API we set on some NotFound & BadRequest returns a message for the user in the status description;
return HttpError.NotFound(string.Format("Not found with TicketCodeId {0}",
request.TicketCodeId))
This works great in android and .net clients of all sorts. But some clients (I'm looking at you iphone) don't get the status description. The idea is to see in the responsefilter that the status code is set to 400 range and it has a special message, then add a header and copy the status message description into it.
Problem is ResponseFilter has access to IHttpResponse, and that object has only a setter to the statuscode (so no way for me to determine if I need to add the header).
I want to solve it in this generic way to avoid having to remember (and go back over all service implementations) everywhere a 400 status code is set to add the same description to a header. It would be nice if this is done in a single place, the ResponseFilter.