Category: Web API
-
OpenCover and ReportGenerator Unit Test Coverage in Visual Studio 2013 and 2015
The usual choices for getting code coverage metrics in Visual Studio is to buy the Enterprise version of Visual Studio or buy the dotCover third party tool, both of which are costly, especially if you are developing small applications yourself and want to check the coverage of your unit tests. There is a free NuGet […]
-
Anti Forgery Tokens with AngularJS and ASP.NET Web API
Single Page Applications using AngularJS with ASP.NET will by default leave our web api methods open to forgery abuse. A few simple steps will allow you to add anti forgery protection.
-
Generic wrapper for calling ASP.NET WEB API REST service using HttpClient with optional HMAC authentication
Wanting to implement my business rules in a separate tier running on a different server than the presentation tier I decided that I wanted the business tier to expose its functionality via REST methods using the web api. I then wanted a standard reusable generic way of calling the different controllers so I started on […]