Creating Custom Media Format with ASP.NET Web API
We can create our own media formats in the ASP.NET Web API project First of all, as root you create a folder called Formatters And we create a class in this folder for the format we want to define(For example for csv format) using System.Web.Http; using System.Web.Mvc; using Kartal.Formatters; public class DemoItemCsvFormatter : BufferedMediaTypeFormatter… Read More »