I'm working with ASP.NET MVC 4 and I need to return a status code of 420, which is not found among the HttpStatusCode enumeration values.
Usually it's simple, you do something like:
return Request.CreateResponse(HttpStatusCode.InternalServerError, error);
But what do I do when I don't have an enumeration value for the status code I want?