TJsonReader.Create Constructor
Overloads
TJsonReader.Create(string)
Creates a JSON reader that parses the specified string.
Syntax
Unit: Bcl.Json.Reader
constructor TJsonReader.Create(const AString: string);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| const | AString | string | The JSON string to parse. |
See also
TJsonReader.Create(TStream)
Creates a JSON reader that parses JSON data from the specified stream.
Syntax
Unit: Bcl.Json.Reader
constructor TJsonReader.Create(const AStream: TStream);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| const | AStream | TStream | The stream containing JSON data to parse. |