How to serialize a JObject without the formatting?

后端 未结 3 1010
灰色年华
灰色年华 2020-12-24 04:01

I have a JObject (I\'m using Json.Net) that I constructed with LINQ to JSON (also provided by the same library). When I call the ToString() method

3条回答
  •  伪装坚强ぢ
    2020-12-24 04:59

    Call JObject's ToString(Formatting.None) method.

    Alternatively if you pass the object to the JsonConvert.SerializeObject method it will return the JSON without formatting.

    Documentation: Write JSON text with JToken.ToString

提交回复
热议问题