System.JSON.TJSONObject.TJSONParseOption

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TJSONParseOption = (IsUTF8, UseBool, RaiseExc);

C++

enum class DECLSPEC_DENUM TJSONParseOption : unsigned char { IsUTF8, UseBool, RaiseExc };

Properties

Type Visibility Source Unit Parent
enum public
System.JSON.pas
System.JSON.hpp
System.JSON TJSONObject

Description

Enumeration that represents one of the options that you can set when you parse a JSON value into an object.

Possible values are:

Value Description

IsUTF8

Indicates that the input data, an array of bytes, is a string in UTF-8 format.

UseBool

Requests that the input data is interpreted as a boolean value, so that the resulting JSON value is an instance of TJSONBool.

See Also