Discuss this help topic in SecureBlackbox Forum

TElIdSSHClientServerIOHandler.OnOpenShell

TElIdSSHClientServerIOHandler     See also     


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


This event is fired when shell connection has been established.

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    property OnOpenShell : TSSHOpenShellEvent;
    TSSHOpenShellEvent = procedure(Sender: TObject; Connection: TElSSHTunnelConnection) of object;

[C++]
    not available

[PHP]
    not available

[Java]
    not available

Parameters

Description

    This event is always preceded by OnBeforeOpenShell (which parameter Accept is True). The OnOpenShell event passes the newly created TElSSHTunnelConnection object to user. After receiving Connection object you can use its SendData, SendText methods and OnData event for data transferring from the shell to the client and back.
    SSHBlackbox contains classes which provide such data transfer (TElShellSSHSubsystemHandler).

Discuss this help topic in SecureBlackbox Forum