Discuss this help topic in SecureBlackbox Forum

TElSSHTunnelConnection.SendData

TElSSHTunnelConnection     See also     


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


This method sends data through logical connection

Declaration

[C#]
    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 : longint);

[C++]
    void SendData(void * Buffer, int32_t Size);

[PHP]
    void SendData(TSBPointer|array of byte|string|NULL $Buffer, integer $Size)

[Java]
    void sendData(byte[] arg0);
    void sendData(byte[] arg0, int arg1, int arg2);

Parameters

  • Buffer - buffer with data
  • Size - size of buffer with data
  • Offset -

Description

    Use this method to send data through the logical connection.

See also:     SendText    

Discuss this help topic in SecureBlackbox Forum