CefJsonWriterOptions Enumeration |
Options that can be passed to CefWriteJSON.
Namespace:
Internal.Xilium.CefGlue
Assembly:
NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax [FlagsAttribute]
public enum CefJsonWriterOptions
Members
| Member name | Value | Description |
---|
| Default | 0 |
Default behavior.
|
| OmitBinaryValues | 1 |
This option instructs the writer that if a Binary value is encountered,
the value (and key if within a dictionary) will be omitted from the
output, and success will be returned. Otherwise, if a binary value is
encountered, failure will be returned.
|
| OmitDoubleTypePreservation | 2 |
This option instructs the writer to write doubles that have no fractional
part as a normal integer (i.e., without using exponential notation
or appending a '.0') as long as the value is within the range of a
64-bit int.
|
| PrettyPrint | 4 |
Return a slightly nicer formatted json string (pads with whitespace to
help with readability).
|
See Also