System.Net.URLClient.TNameValuePair

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

Delphi

  TNameValuePair = record
    Name: string;
    Value: string;
    constructor Create(const AName, AValue: string);
  end;

C++

struct DECLSPEC_DRECORD TNameValuePair
{
public:
    System::UnicodeString Name;
    System::UnicodeString Value;
    __fastcall TNameValuePair(const System::UnicodeString AName, const System::UnicodeString AValue);
    TNameValuePair() {}
};

プロパティ

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


説明

名前-値 ペアを管理するためのレコード。

関連項目