Datasnap.DSClientRest.TDSRestParameterMetaData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TDSRestParameterMetaData = record
    Name: string;
    Direction: Integer;
    DBXType: Integer;
    TypeName: string;
  end;

C++

struct DECLSPEC_DRECORD TDSRestParameterMetaData
{
public:
    System::UnicodeString Name;
    int Direction;
    int DBXType;
    System::UnicodeString TypeName;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Datasnap.DSClientRest.pas
Datasnap.DSClientRest.hpp
Datasnap.DSClientRest Datasnap.DSClientRest

Description

Metadata about a parameter or about a return value of a server method, including the name of the parameter, its type, and more.

See Also