Discuss this help topic in SecureBlackbox Forum

TElGoogleDriveFile.Read

TElGoogleDriveFile     See also     


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


Downloads the file data or its part from the remote storage.

Declaration

[C#]
    void Read(System.IO.Stream Data);

[VB.NET]
    Sub Read(ByVal Data As System.IO.Stream)

[Pascal]
    procedure Read(Data: TStream);
    function Read(Data: TStream; Offset, Size : Int64): Int64;

[C++]
    void Read(TStream &Data);
    void Read(TStream *Data);

[PHP]
    void Read(TStream $Data)

[Java]
    void read(TElStream Data);

Parameters

  • Data - destination stream where the file or its part should be downloaded to
  • Offset - Offset from which to start reading
  • Size - Size of the data block in bytes

Description

    Use this method to download the file's data or its part from the storage to the stream.

See also:     Write     FileSize    

Discuss this help topic in SecureBlackbox Forum