JsonValueKind Enumeração
Definição
Especifica o tipo de dados de um valor JSON.Specifies the data type of a JSON value.
public enum class JsonValueKind
public enum JsonValueKind
type JsonValueKind =
Public Enum JsonValueKind
- Herança
Campos
| Array | 2 | Uma matriz JSON.A JSON array. |
| False | 6 | O valor JSON false.The JSON value false. |
| Null | 7 | O valor JSON null.The JSON value null. |
| Number | 4 | Um número JSON.A JSON number. |
| Object | 1 | Um objeto JSON.A JSON object. |
| String | 3 | Uma cadeia de caracteres JSON.A JSON string. |
| True | 5 | O valor JSON true.The JSON value true. |
| Undefined | 0 | Não há nenhum valor (diferente de Null).There is no value (as distinct from Null). |
Comentários
Para obter mais informações, consulte como escrever serializadores personalizados e desserializadores com System.Text.Jsem.For more information, see How to write custom serializers and deserializers with System.Text.Json.