System.JSON.TJSONObject.GetPairByName
Delphi
function GetPairByName(const PairName: string): TJSONPair;
C++
TJSONPair* __fastcall GetPairByName(const System::UnicodeString PairName);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | protected | System.JSON.pas System.JSON.hpp |
System.JSON | TJSONObject |
Description
Returns the key-value pair, from the current JSON object, that has a key part matching the specified PairName
string, or nil
if there is no key matching PairName
.