Datasnap.DSProxyWriter.TDSProxyParamAccess

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TDSProxyParamAccess = record
    TypeIdentifier: string;
    Getter: string;
    Setter: string;
    constructor Create(const ATypeId, AGetter, ASetter: string);
  end;

C++

struct DECLSPEC_DRECORD TDSProxyParamAccess
{
public:
    System::UnicodeString TypeIdentifier;
    System::UnicodeString Getter;
    System::UnicodeString Setter;
    __fastcall TDSProxyParamAccess(const System::UnicodeString ATypeId, const System::UnicodeString AGetter, const System::UnicodeString ASetter);
    TDSProxyParamAccess() {}
};

Properties

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

Description

Record used to hold useful type information.

TDSProxyParamAccess is used by DSProxy writers to hold type information.

See Also