How to configure WebAPI always return JSON

September 28, 2013 by Anuraj

.Net .Net 4.0 Web API

WebAPI will return JSON or XML based on the request accept header. But some times you may need to return JSON only, without considering the accept header.

Here is the code snippet which will helps to return JSON always.

GlobalConfiguration.Configuration.Formatters.Clear();
GlobalConfiguration.Configuration.Formatters.Add(new JsonMediaTypeFormatter());

You need to place this code in the WebApiConfig class, Register method.

The problem with this approach is, even though you are clearing all the formatters, the content negotiation process is still happening, which is a tiny overhead. You can avoid this by implementing your own ContentNegotiator by implementing IContentNegotiator interface.

Happy Programming.

Copyright © 2024 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub