SecureBlackbox

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

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


TElCustomSSHSubsystemHandler.SendData

TElCustomSSHSubsystemHandler     See also     


 

Sends stdout-data to Connection.

 

Declaration

[C#/Java]
    void SendData(byte[] Buffer);
    void SendData(byte[] Buffer, int Offset, int Size);

[VB.NET]
    Sub SendData(ByVal Buffer As Byte())
    Sub SendData(ByVal Buffer As Byte(), ByVal Offset As Integer, ByVal Size As Integer)

[Pascal]
    procedure SendData(Buffer: pointer; Size: integer);

[C++]
    not implemented;

   

Parameters

  • Buffer - buffer with data to be send
  • Size - size of the Buffer
  • Offset - offset of the data in Buffer
   

Description

    This method can be used in both modes to send stdout-data to Connection. stdout-data is the "regular" data stream, used for general data sending.

   

See also:     SendExtendedData    

 
Back to top