Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web.Http;
- using Newtonsoft.Json;
- using Newtonsoft.Json.Serialization;
- namespace Vidly
- {
- public static class WebApiConfig
- {
- public static void Register(HttpConfiguration config)
- {
- // using camel notation
- var settings = config.Formatters.JsonFormatter.SerializerSettings;
- settings.ContractResolver = new CamelCasePropertyNamesContractResolver();
- settings.Formatting = Formatting.Indented;
- // end camel notation
- config.MapHttpAttributeRoutes();
- config.Routes.MapHttpRoute(
- name: "DefaultApi",
- routeTemplate: "api/{controller}/{id}",
- defaults: new { id = RouteParameter.Optional }
- );
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment