PreviousNext

Null API Responses and HTTP 204 Results in ASP.NET Core

by bill-s, 2020-02-28T03:26:28.764Z

ASP.NET Core 3.x has a behavior that results in API results that return null from the controller action returning a HTTP 204 - No Content response rather than a null JSON result. Presumably the idea is that if you return null from an API, your intention is to return 'no content' and that sort of make sense in some cases. Except... when you're building an API null may actually have a meaning on the client or the client at minimum may be expecting a proper JSON response.

Read More