Discuss this help topic in SecureBlackbox Forum

TElOneDriveFile.Read

TElOneDriveFile     See also     


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


Reads the file content to a stream.

Declaration

[C#]
    void Read(System.IO.Stream Target);
    long Read(long Offset, long Size, System.IO.Stream Target);

[VB.NET]
    Sub Read(ByVal Target As System.IO.Stream)
    Function Read(ByVal Offset As Long, ByVal Size As Long, ByVal Target As System.IO.Stream) As Long

[Pascal]
    procedure Read(Target: TStream);

[C++]
    void Read(TStream &Target);
    void Read(TStream *Target);
    int64_t Read(int64_t Offset, int64_t Size, TStream &Target);
    int64_t Read(int64_t Offset, int64_t Size, TStream *Target);

[PHP]
    void Read(TStream $Target)
    integer Read(integer $Offset, integer $Size, TStream $Target)

[Java]
    long read(long Offset, long Size, TElStream Target);
    void read(TElStream Target);

Parameters

  • Target - the stream to which the file data should be read.
  • Offset -
  • Size -

Description

    Use this property to download the file from the storage and save the data to the stream.

See also:     Write    

Discuss this help topic in SecureBlackbox Forum