Hyprlinkr
Hyprlinkr copied to clipboard
A URI building helper library for ASP.NET Web API
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.4 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.4 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.4 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.4 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
The `DefaultRouteDispatcher` was modified to check the controller for a `Route` attribute, similarly to what it does with actions. As per MSDN documentation `Route` attributes on actions take precedence over...
I have a controller action which has the following signature `public async Task Delete(int id);` it returns Task so that the webapi will return a 204 No Content by default....
I've started using Hyperlinkr just a week or so ago, not long after I started working with Web Api 2. I came across what looks like an issue to me,...
I am using attribute routing in my controllers, using the `[Route]` attribute with route names, and I noticed that Hyprlinkr always assumes that there's a route named 'DefaultApi' to generate...
First of all, thank you for your work. Have you thought about the possibility of supporting relative Uri generation in addition to absolute ones? If that is something that you...
Hi, I am using it in a web api 2 project along with the attribute routing. I have a function as below: // GET /api/authors/1/books [Route("~/api/authors/{authorId:int}/books")] public IEnumerable GetByAuthor(int authorId)...