Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorageObject.Read

TElDropboxDataStorageObject     See also     


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


Reads the file from the storage.

Declaration

[C#]
    void Read(System.IO.Stream Strm);
    void Read(string Rev, System.IO.Stream Strm);

[VB.NET]
    Sub Read(ByVal Strm As System.IO.Stream)
    Sub Read(ByVal Rev As String, ByVal Strm As System.IO.Stream)

[Pascal]
    procedure Read(Strm : TStream);
    procedure Read(const Rev : string; Strm : TStream);

[C++]
    void Read(TStream &Strm);
    void Read(TStream *Strm);
    void Read(const std::string &Rev, TStream &Strm);
    void Read(const std::string &Rev, TStream *Strm);

[PHP]
    void Read(TStream $Strm)
    void Read(string $Rev, TStream $Strm)

[Java]
    void read(TElStream Strm);
    void read(String Rev, TElStream Strm);

Parameters

  • Rev - specifies the desired revision of the file.
  • Strm - the stream into which the file will be read.

Description

    Use this method to download the file from Dropbox.

See also:     ReadBlock     Refresh     Restore     Write    

Discuss this help topic in SecureBlackbox Forum