Swashbuckle Pro Tips for ASP.NET Web API #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class WebApiConfig | |
{ | |
public static void Register(IAppBuilder app, IContainer container) | |
{ | |
var settings = new JsonSerializerSettings() | |
{ | |
// Add JSON serialiser settings to support camelCasing. | |
ContractResolver = new CamelCasePropertyNamesContractResolver(), | |
... | |
}; | |
var config = new HttpConfiguration(); | |
var jsonFormatter = config.Formatters.JsonFormatter; | |
jsonFormatter.SerializerSettings = settings; | |
jsonFormatter.SupportedMediaTypes.Clear(); | |
jsonFormatter.SupportedMediaTypes.Add(new MediaTypeHeaderValue("application/json")); | |
var xmlFormatter = config.Formatters.XmlFormatter; | |
xmlFormatter.SupportedMediaTypes.Clear(); | |
xmlFormatter.SupportedMediaTypes.Add(new MediaTypeHeaderValue("application/xml")); | |
config.Formatters.Clear(); | |
config.Formatters.AddRange(new List<MediaTypeFormatter>() { jsonFormatter, xmlFormatter }); | |
... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment