System.JSON.Types.TJsonCodeWScope

提供: RAD Studio API Documentation
移動先: 案内検索

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() {}
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
System.JSON.Types.pas
System.JSON.Types.hpp
System.JSON.Types System.JSON.Types


説明

TJsonCodeWScope は、BSON コードをスコープ データ型が表します。

スコープ付き BSON コードの詳細については、「BSON 仕様」を参照してください。

関連項目