Discuss this help topic in SecureBlackbox Forum

TElSSHClass.OnOpenConnection

TElSSHClass     See also     


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


This event is fired when the handshake process is completed

Declaration

[C#]
    event TSSHOpenConnectionEvent OnOpenConnection;
    delegate void TSSHOpenConnectionEvent(Object Sender);

[VB.NET]
    Event OnOpenConnection As TSSHOpenConnectionEvent
    Delegate Sub TSSHOpenConnectionEvent(ByVal Sender As Object)

[Pascal]
    property OnOpenConnection : TSSHOpenConnectionEvent;
    TSSHOpenConnectionEvent = procedure (Sender: TObject) of object;

[C++]
    void get_OnOpenConnection(TSSHOpenConnectionEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnOpenConnection(TSSHOpenConnectionEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSSHOpenConnectionEvent)(void * _ObjectData, TObjectHandle Sender);

[PHP]
    TSSHOpenConnectionEvent|callable|NULL get_OnOpenConnection()
    void set_OnOpenConnection(TSSHOpenConnectionEvent|callable|NULL $Value)
    callable TSSHOpenConnectionEvent(TObject $Sender)

[Java]
    TSSHOpenConnectionEvent getOnOpenConnection();
    void setOnOpenConnection(TSSHOpenConnectionEvent Value);
    TSSHOpenConnectionEvent.Callback OnOpenConnection = new TSSHOpenConnectionEvent.Callback() {
        public void TSSHOpenConnectionEventCallback(TObject Sender) {
            //...
        }
    }

Description

    This event is fired when all negotiation operations, such as cipher agreement and tunneling request, are completed. After this event is fired you may send and receive data via tunnels.

See also:     OnCloseConnection     TElSSHClient.Open     TElSSHServer.Open    

Discuss this help topic in SecureBlackbox Forum