WebApi2官網學習記錄---Media Formatters

來源:互聯網
上載者:User

標籤:

Web API內建支援XML、JSON、BSON、和form-urlencoded的MiME type。

建立的自訂MIME類型要繼承一下類中的一個:

  • MediaTypeFormatter 這個類使用非同步讀/寫方法
  • BufferedMediaTypeFormatter 這個類繼承自MediaTypeFormatter,但它使用同步的讀/寫方法

自訂一個MIME類型,如下: 

  public class ProductCsvFormatter:BufferedMediaTypeFormatter    {        public ProductCsvFormatter()        {            //媒體類型            SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/csv"));            //支援的字元集            SupportedEncodings.Add(Encoding.GetEncoding("iso-8859-1"));            SupportedEncodings.Add(new UTF8Encoding(encoderShouldEmitUTF8Identifier:false));                    }        //指示哪種類型 格式化器可以進行序列化,        public override bool CanWriteType(Type type)        {//支援序列化翻個Product對象和Product對象集合            if (type == typeof(Product))                return true;            else            {                Type enumerableType = typeof(IEnumerable<Product>);                return enumerableType.IsAssignableFrom(type);            }        }        //指示哪個對象可以被還原序列化        public override bool CanReadType(Type type)        {//目前不需要還原序列化 所以返回false            return false;        }        //序列化對象並寫入流,如果支援還原序列化還需要重載ReadFromStream方法        public override void WriteToStream(Type type, object value, System.IO.Stream writeStream, System.Net.Http.HttpContent content)        {            Encoding effectiveEncoding = SelectCharacterEncoding(content.Headers);            using (var writer = new StreamWriter(writeStream, effectiveEncoding))            {                var products = value as IEnumerable<Product>;                if (products != null)                {                    foreach (var product in products)                    {                        WriteItem(product, writer);                    }                }                else                {                    var singleProduct = value as Product;                    if (singleProduct == null)                        throw new InvalidOperationException("Cannot serialize type");                    WriteItem(singleProduct, writer);                }            }        }        private void WriteItem(Product product, StreamWriter writer)        {            writer.WriteLine("{0},{1},{2},{3}", Escape(product.Id),        Escape(product.Name), Escape(product.Category), Escape(product.Price));        }        static char[] _specialChars = new char[] { ‘,‘, ‘\n‘, ‘\r‘, ‘"‘ };        private string Escape(object o)        {            if (o == null)                return "";            string field = o.ToString();            if (field.IndexOfAny(_specialChars) != -1)            {                return String.Format("\"{0}\"", field.Replace("\"", "\"\""));            }            else                return field;        }    } 
 public static void Register(HttpConfiguration config)        {            // Web API 配置和服務            // Web API 路由            config.MapHttpAttributeRoutes();            config.Routes.MapHttpRoute(                name: "DefaultApi",                routeTemplate: "api/{controller}/{id}",                defaults: new { id = RouteParameter.Optional }            );            //添加自訂的MIME類型            config.Formatters.Add(new ProductCsvFormatter());        }

類比請求請求時要指定Content-Type

WebApi2官網學習記錄---Media Formatters

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.