SecureBlackbox

200+ components and classes for all aspects of digital security of your data

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


TElCustomSSHSubsystemHandler.ReceiveData

TElCustomSSHSubsystemHandler     See also     


 

Use this method in synchronous mode to read the data from Connection.

 

Declaration

[C#/Java]
    int ReceiveData(byte[] Buffer, int StartIndex, int Size);

[VB.NET]
    Function ReceiveData(ByVal Buffer As Byte(), ByVal StartIndex As Integer, ByVal Size As Integer) As Integer

[Pascal]
    function ReceiveData(Buffer: pointer; Size: integer): integer;

[C++]
    not implemented;

   

Parameters

  • Buffer - buffer for received data
  • Size - maximum size of the Buffer
  • StartIndex - index from which to reading data from Buffer
   

Return value

Returns number of bytes received

   

Description

    Use this method when you want to read data the from Connection to Buffer in synchronous mode.

   

See also:     Read    

 
Back to top