Answers for "Example: Customize JSON Serialization in C#"

C#
0

Example: Customize JSON Serialization in C#

public static class WebApiConfig
{
    public static void Register(HttpConfiguration config)
    {
        config.MapHttpAttributeRoutes();
            
        config.Routes.MapHttpRoute(
            name: "DefaultApi",
            routeTemplate: "api/{controller}/{id}",
            defaults: new { id = RouteParameter.Optional }
        );

        // configure json formatter
        JsonMediaTypeFormatter jsonFormatter = config.Formatters.JsonFormatter;

        jsonFormatter.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();
    }
}
Posted by: Guest on July-01-2021

Code answers related to "Example: Customize JSON Serialization in C#"

C# Answers by Framework

Browse Popular Code Answers by Language