Richard Pickett
Richard Pickett
I have the following controller in my project: ``` namespace MyProject.Api.Version1 { [RoutePrefix("api/something")] public class SomethingController : ApiController { [Route("")] [HttpGet] public IHttpActionResult GetSomething() { return Ok(); } [Route("else")] [HttpGet]...
I updated to 3.0.0-beta3 to incorporate the new exception handling changes but I'm not getting an `ArgumentNullException` when the version header isn't supplied. My understanding was that I should expect...
I'd like to return different error messages to the user to attempt to explain the problems better. For example, rather than say that an API doesn't exist, I'd like to...