Creating a custom ASP.NET Core Output Formatter
If you follow my blog, you may also know that I’ve blogged a bit about Hypermedia. Because I’m a fan, I’ve decided to start creating an custom ASP.NET Core Output Formatter to handle the Siren hypermedia specification (application/vnd.siren+json). All the code samples in this blog post are pulled from a sample application of the game Hangman. I’m creating it in ASP.NET Core. I will eventually pull out the Output Formatter and create a repo on GitHub and a Nuget. Output Formatter Since I’m handling Text, I’m going to be deriving from the TextOutputFormatter. This requires you to implement two methods:… Read More »Creating a custom ASP.NET Core Output Formatter