Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorage.ReadObject

TElDropboxDataStorage     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Reads a file from the storage.

Declaration

[C#]
    void ReadObject(string Path, System.IO.Stream Strm);
    void ReadObject(string Path, string Rev, System.IO.Stream Strm);
    void ReadObject(TElDropboxDataStorageObject Obj, System.IO.Stream Strm);
    void ReadObject(TElDropboxDataStorageObject Obj, string Rev, System.IO.Stream Strm);
    void ReadObject(TElCustomDataStorageObject Obj, System.IO.Stream Strm);

[VB.NET]
    Sub ReadObject(ByVal Path As String, ByVal Strm As System.IO.Stream)
    Sub ReadObject(ByVal Path As String, ByVal Rev As String, ByVal Strm As System.IO.Stream)
    Sub ReadObject(ByVal Obj As TElDropboxDataStorageObject, ByVal Strm As System.IO.Stream)
    Sub ReadObject(ByVal Obj As TElDropboxDataStorageObject, ByVal Rev As String, ByVal Strm As System.IO.Stream)
    Sub ReadObject(ByVal Obj As TElCustomDataStorageObject, ByVal Strm As System.IO.Stream)

[Pascal]
    procedure ReadObject(const Path : string; Strm : TStream);
    procedure ReadObject(const Path : string; const Rev : string; Strm : TStream);
    procedure ReadObject(Obj : TElDropboxDataStorageObject; Strm : TStream);
    procedure ReadObject(Obj : TElDropboxDataStorageObject; const Rev : string; Strm : TStream);

[C++]
    void ReadObject(const std::string &Path, TStream &Strm);
    void ReadObject(const std::string &Path, TStream *Strm);
    void ReadObject(const std::string &Path, const std::string &Rev, TStream &Strm);
    void ReadObject(const std::string &Path, const std::string &Rev, TStream *Strm);
    void ReadObject(TElDropboxDataStorageObject &Obj, TStream &Strm);
    void ReadObject(TElDropboxDataStorageObject *Obj, TStream *Strm);
    void ReadObject(TElDropboxDataStorageObject &Obj, const std::string &Rev, TStream &Strm);
    void ReadObject(TElDropboxDataStorageObject *Obj, const std::string &Rev, TStream *Strm);

[PHP]
    void ReadObject(string $Path, TStream $Strm)
    void ReadObject(string $Path, string $Rev, TStream $Strm)
    void ReadObject(TElDropboxDataStorageObject $Obj, TStream $Strm)
    void ReadObject(TElDropboxDataStorageObject $Obj, string $Rev, TStream $Strm)
    void ReadObject(TElCustomDataStorageObject $Obj, TStream $Strm)

[Java]
    void readObject(TElDropboxDataStorageObject Obj, TElStream Strm);
    void readObject(TElDropboxDataStorageObject Obj, String Rev, TElStream Strm);
    void readObject(String Path, String Rev, TElStream Strm);
    void readObject(String Path, TElStream Strm);

Parameters

  • Obj - the object (file) to be read.
  • Path - the path to the remote file.
  • Rev - specifies the desired revision of the file.
  • Strm - the stream into which the file will be read.

Description

    Use this method to get files from Dropbox.

See also:     ReadBlock     ObjectExists     List    

Discuss this help topic in SecureBlackbox Forum