System.Net.URLClient.TNameValuePair

From RAD Studio API Documentation
Jump to: navigation, search

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

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Net.URLClient.pas
System.Net.URLClient.hpp
System.Net.URLClient System.Net.URLClient

Description

Record to manage a Name-Value pair.

See Also