REST.Backend.ParseApi.TParseApi.TFile

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

    TFile = record
    private
      FName: string;
      FFileName: string;
      FDownloadURL: string;
    public
      constructor Create(const AName: string);
      property FileName: string read FFileName;
      property DownloadURL: string read FDownloadURL;
      property Name: string read FName;
    end;

C++

struct DECLSPEC_DRECORD TFile
{
private:
    System::UnicodeString FName;
    System::UnicodeString FFileName;
    System::UnicodeString FDownloadURL;
public:
    __fastcall TFile(const System::UnicodeString AName);
    __property System::UnicodeString FileName = {read=FFileName};
    __property System::UnicodeString DownloadURL = {read=FDownloadURL};
    __property System::UnicodeString Name = {read=FName};
    TFile() {}
};

Propriétés

Type Visibilité  Source Unité  Parent
record
struct
public
REST.Backend.ParseApi.pas
REST.Backend.ParseApi.hpp
REST.Backend.ParseApi TParseApi

Description

Embarcadero Technologies ne possède pas d'informations supplémentaires pour le moment. Veuillez nous aider à documenter cette rubrique en utilisant la page Discussion !