How to encode the \' to \\u0027 with JSON.NET?
\'
\\u0027
So that the json string would look something like this:
{\"Id\":8,\"CompanyName
Json.NET 4.5 Release 11 added an option to control string escaping. One of the options is to escape all HTML characters which includes single quotes.
JsonWriter.StringEscapeHandling