Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidDeSloovere/3bbf604b13214ce9149e to your computer and use it in GitHub Desktop.
Save DavidDeSloovere/3bbf604b13214ce9149e to your computer and use it in GitHub Desktop.
Remove the XML formatter so content is always returned as JSON.
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
var xmlFormatter = config.Formatters.XmlFormatter;
config.Formatters.Remove(xmlFormatter);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment