SecureBlackbox

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

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


TElCustomSSHSubsystemHandler.SendExtendedData

TElCustomSSHSubsystemHandler     See also     


 

Sends stderr-data to Connection.

 

Declaration

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

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

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

[C++]
    not implemented;

   

Parameters

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

Description

    This method can be used in both modes to send stderr-data to Connection. stderr-data is a data stream, used by shell tunnels to send errors, written to stderr by console applications.

   

See also:     SendData    

 
Back to top