System.JSON.Writers.TJsonWriteState
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 | 
|---|---|---|
| 
 
  | 
 
  | 
 Une exception a été déclenchée.  | 
| 
 
  | 
 
  | 
 La méthode Close n'a pas été appelée.  | 
| 
 
  | 
 
  | 
 Un objet est en cours d'écriture.  | 
| 
 
  | 
 
  | 
 Un tableau est en cours d'écriture.  | 
| 
 
  | 
 
  | 
 Un constructeur est en cours d'écriture.  | 
| 
 
  | 
 
  | 
 Une propriété est en cours d'écriture.  | 
| 
 
  | 
 
  | 
 Une méthode Write n'a pas été appelée.  |