标签: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;
}
}
标签:ring alt message 技术分享 context string lower code bar
原文地址:http://www.cnblogs.com/seesunny/p/7050368.html