How to encode the \' to \\u0027 with JSON.NET?
\'
\\u0027
So that the json string would look something like this:
{\"Id\":8,\"CompanyName
Sample Call
Newtonsoft.Json.JsonConvert.SerializeObject(your_object, Newtonsoft.Json.Formatting.None, new Newtonsoft.Json.JsonSerializerSettings { StringEscapeHandling = Newtonsoft.Json.StringEscapeHandling.EscapeHtml })