Click or drag to resize

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
C#
[FlagsAttribute]
public enum CefJsonWriterOptions
Members
  Member nameValueDescription
Default0 Default behavior.
OmitBinaryValues1 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.
OmitDoubleTypePreservation2 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.
PrettyPrint4 Return a slightly nicer formatted json string (pads with whitespace to help with readability).
See Also