Inside my method I want to do something like this:
if (...) return Request.CreateErrorResponse(HttpStatusCode.Forbidden, "RFID is disabled for this site.");
but I get error "cannot impilicitly conver HttpResponseMessage to IHttpActionResult.
What is the correct way to return 403 please?