Skip to content

Instantly share code, notes, and snippets.

@ntotten
Created July 2, 2012 01:45
Show Gist options
  • Select an option

  • Save ntotten/3030404 to your computer and use it in GitHub Desktop.

Select an option

Save ntotten/3030404 to your computer and use it in GitHub Desktop.
ApiController Formatter Configuration
public class FormatterConfig
{
public static void ConfigureApi(HttpConfiguration config)
{
// Remove the XML formatter
config.Formatters.Remove(config.Formatters.XmlFormatter);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment