StringEscapeHandling
Specifies how strings are escaped when writing JSON text.
namespace Newtonsoft.Json
{
public enum StringEscapeHandling
{
Default,
EscapeNonAscii,
EscapeHtml
}
}