System.JSON.Writers.TJsonWriteState

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

TJsonWriteState = (Error, Closed, &Object, &Array, &Constructor, &Property, Start);

C++

enum class DECLSPEC_DENUM TJsonWriteState : unsigned char { Error, Closed, Object, Array, Constructor, Property, Start };

Propriétés

Type Visibilité  Source Unité  Parent
enum public
System.JSON.Writers.pas
System.JSON.Writers.hpp
System.JSON.Writers System.JSON.Writers


Description

TJsonWriteState énumère tous les états possibles de l'éditeur JSON.

Etat Valeur de la plage Description

Error

0

Une exception a été déclenchée.

Closed

1

La méthode Close n'a pas été appelée.

&Object

2

Un objet est en cours d'écriture.

&Array

3

Un tableau est en cours d'écriture.

&Constructor

4

Un constructeur est en cours d'écriture.

&Property

5

Une propriété est en cours d'écriture.

Start

6

Une méthode Write n'a pas été appelée.

Voir aussi