Discuss this help topic in SecureBlackbox Forum

TElSSHPublicKeyClient.OnOpenConnection

TElSSHPublicKeyClient     See also     


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


This event is fired when the connection with the public keys server is established.

Declaration

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

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

[Pascal]
    property OnOpenConnection: TNotifyEvent;

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

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

[Java]
    TNotifyEvent getOnOpenConnection();
    void setOnOpenConnection(TNotifyEvent Value);
    TNotifyEvent.Callback OnOpenConnection = new TNotifyEvent.Callback() {
        public void TNotifyEventCallback(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 the Active property is set to True and you may send and receive data via tunnel.

See also:     OnAttribute     OnCloseConnection     OnError     OnPublicKey     OnStatus    

Discuss this help topic in SecureBlackbox Forum