Discuss this help topic in SecureBlackbox Forum

TElStream.Read

TElStream     See also     


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


Reads a block of data from the stream.

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    not implemented;

[C++]
    not available

[PHP]
    not available

[Java]
    int read(byte[] Buffer, int Offset, int Count);

Parameters

  • Buffer - memory buffer where the data should be read to.
  • Offset - position at which the data should be stored in Buffer.
  • Count - the number of bytes to read from the stream.

Return value

    Returns the number of bytes that were actually read.

Description

    Use this method to read a block of data starting from the current position in the stream.

See also:     Write    

Discuss this help topic in SecureBlackbox Forum