REST.Backend.MetaTypes.TBackendClassValue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TBackendClassValue = record
  private
    FData: IBackendMetaClass;
    function GetBackendClassName: string;
    function GetDataType: string;
  public
    constructor Create(const Intf: IBackendMetaClass);
    function TryGetBackendClassName(out AValue: string): Boolean;
    function TryGetDataType(out AValue: string): Boolean;
    property BackendClassName: string read GetBackendClassName;
    property BackendDataType: string read GetDataType;
  end;

C++

struct DECLSPEC_DRECORD TBackendClassValue
{
private:
    _di_IBackendMetaClass FData;
    System::UnicodeString __fastcall GetBackendClassName(void);
    System::UnicodeString __fastcall GetDataType(void);
public:
    __fastcall TBackendClassValue(const _di_IBackendMetaClass Intf);
    bool __fastcall TryGetBackendClassName(/* out */ System::UnicodeString &AValue);
    bool __fastcall TryGetDataType(/* out */ System::UnicodeString &AValue);
    __property System::UnicodeString BackendClassName = {read=GetBackendClassName};
    __property System::UnicodeString BackendDataType = {read=GetDataType};
    TBackendClassValue() {}
};

Properties

Type Visibility Source Unit Parent
record
struct
public
REST.Backend.MetaTypes.pas
REST.Backend.MetaTypes.hpp
REST.Backend.MetaTypes REST.Backend.MetaTypes

Description

Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!