码迷,mamicode.com
首页 > Web开发 > 详细

WCF输出JSON

时间:2017-06-19 21:00:08      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:ring   alt   message   技术分享   context   string   lower   code   bar   

    public class MyService : IService
    {
        public Message GetXml(string format)
        {
            WebOperationContext context = WebOperationContext.Current;

            Book b = new Book
            {
                BookName = "卖女孩的小火柴",
                Price = 25.2M,
                BarCode = "2811365801"
            };

            Message msgreturn = null;
            // 判断格式
            if (format.ToLower() == "xml")
            {
                msgreturn = context.CreateXmlResponse<Book>(b);
            }
            else
            {
                msgreturn = context.CreateJsonResponse<Book>(b);
            }

            return msgreturn;
        }
    }
技术分享

WCF输出JSON

标签:ring   alt   message   技术分享   context   string   lower   code   bar   

原文地址:http://www.cnblogs.com/seesunny/p/7050368.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!