Enum StringEscapeHandling
Specifies how strings are escaped when writing JSON text.
Namespace: Bayat.Json
Assembly: Bayat.Json.Runtime.dll
Syntax
public enum StringEscapeHandling
Fields
Name | Description |
---|---|
Default | Only control characters (e.g. newline) are escaped. |
EscapeHtml | HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. |
EscapeNonAscii | All non-ASCII and control characters (e.g. newline) are escaped. |