2014年7月1日 星期二

C# How to Remove Back Slashes from JSON Response in Self Host ?


研究好久結果簡單的定義就解決了


 public HttpResponseMessage meg()
        {

            string output="something";
            return new HttpResponseMessage()
            {
                Content = new StringContent(output, System.Text.Encoding.UTF8, "application/json")
            };
       
        }

沒有留言:

張貼留言