System.JSON.TJSONPair
Delphi
TJSONPair = class sealed(TJSONAncestor)
C++
class PASCALIMPLEMENTATION TJSONPair : /*[[sealed]]*/ public TJSONAncestor
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | System.JSON.pas System.JSON.hpp |
System.JSON | System.JSON |
Description
Implements a key-value
JSON pair.
TJSONPair is the class that implements a JSON pair having two parts. The JsonString property represents a key
(or name) part and a JsonValue property represents a value
part of a JSON pair.
A key part is used in methods like GetPairByName to specify a particular key-value pair in a JSON object.