System.JSON.Types.TJsonCodeWScope
Delphi
  TJsonCodeWScope = record
  public type
    TScopeItem = record
      Ident: String;
      Value: String;
    end;
  public
    Code: String;
    Scope: array of TScopeItem;
    constructor Create(const ACode: String; AScope: TStrings);
  end;
C++
struct DECLSPEC_DRECORD TJsonCodeWScope
{
public:
    struct DECLSPEC_DRECORD TScopeItem
    {
    public:
        System::UnicodeString Ident;
        System::UnicodeString Value;
    };
private:
    typedef System::DynamicArray<TScopeItem> _TJsonCodeWScope__1;
public:
    System::UnicodeString Code;
    _TJsonCodeWScope__1 Scope;
    __fastcall TJsonCodeWScope(const System::UnicodeString ACode, System::Classes::TStrings* AScope);
    TJsonCodeWScope() {}
};
Eigenschaften
| Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet | 
|---|---|---|---|---|
| record struct | public | System.JSON.Types.pas System.JSON.Types.hpp | System.JSON.Types | System.JSON.Types | 
Beschreibung
TJsonCodeWScope repräsentiert den BSON-Code mit Gültigkeitsbereich-Datentyp.
Weitere Einzelheiten bezüglich BSON-Code mit Gültigkeitsbereich finden Sie unter BSON-Spezifikaitonen (EN).