Table of Contents

Enum StringEscapeHandling

Namespace
Dynamicweb.Core.Json.Settings
Assembly
Dynamicweb.Core.dll
Specifies how strings are escaped when writing JSON text.
public enum StringEscapeHandling

Fields

Default = 0
Only control characters (e.g. newline) are escaped.
EscapeHtml = 2
HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped.
EscapeNonAscii = 1
All non-ASCII and control characters (e.g. newline) are escaped.
To top