Discuss this help topic in SecureBlackbox Forum

TElSSHTunnelConnection.SendSignal

TElSSHTunnelConnection     See also     


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


This method sends signal to running command

Declaration

[C#]
    void SendSignal(byte[] Signal);

[VB.NET]
    Sub SendSignal(ByVal Signal As Byte())

[Pascal]
    procedure SendSignal(Signal : string);

[C++]
    void SendSignal(const std::vector<uint8_t> &Signal);

[PHP]
    void SendSignal(array of byte|string|NULL $Signal)

[Java]
    void sendSignal(byte[] Signal);

Parameters

  • Signal - signal to send (without the "SIG" prefix)

Description

    Use this method to send signal to running program. If the remote platform doesn't support signals, this message is ignored.

See also:     SendText    

Discuss this help topic in SecureBlackbox Forum