Discuss this help topic in SecureBlackbox Forum

TElSSHClientTunnelConnection.SendExtendedData

TElSSHClientTunnelConnection     See also     


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


This method sends a piece of extended data through logical connection.

Declaration

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

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

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

[Java]
    void sendExtendedData(byte[] Buffer);
    void sendExtendedData(byte[] Buffer, int Offset, int Size);

Parameters

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

Description

    Use this method to send a piece of extended data through the logical connection.

See also:     CanSend     ExtendedDataType    

Discuss this help topic in SecureBlackbox Forum