Discuss this help topic in SecureBlackbox Forum

TElFTPSServer.OnEstablishSecureConnection

TElFTPSServer     


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


This event is fired when server needs to establish a secure connection.

Declaration

[C#]
    event TSBFTPSServerEstablishSecureConnectionEvent OnEstablishSecureConnection;
    delegate void TSBFTPSServerEstablishSecureConnectionEvent(Object Sender, TElSSLServer Server);

[VB.NET]
    Event OnEstablishSecureConnection As TSBFTPSServerEstablishSecureConnectionEvent
    Delegate Sub TSBFTPSServerEstablishSecureConnectionEvent(ByVal Sender As Object, ByVal Server As TElSSLServer)

[Pascal]
    property OnEstablishSecureConnection : TSBFTPSServerEstablishSecureConnectionEvent;
    TSBFTPSServerEstablishSecureConnectionEvent = procedure (Sender: TObject; Server : TElSSLServer) of object;

[C++]
    void get_OnEstablishSecureConnection(TSBFTPSServerEstablishSecureConnectionEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnEstablishSecureConnection(TSBFTPSServerEstablishSecureConnectionEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBFTPSServerEstablishSecureConnectionEvent)(void * _ObjectData, TObjectHandle Sender, TElSSLServerHandle Server);

[PHP]
    TSBFTPSServerEstablishSecureConnectionEvent|callable|NULL get_OnEstablishSecureConnection()
    void set_OnEstablishSecureConnection(TSBFTPSServerEstablishSecureConnectionEvent|callable|NULL $Value)
    callable TSBFTPSServerEstablishSecureConnectionEvent(TObject $Sender, TElSSLServer $Server)

[Java]
    TSBFTPSServerEstablishSecureConnectionEvent getOnEstablishSecureConnection();
    void setOnEstablishSecureConnection(TSBFTPSServerEstablishSecureConnectionEvent Value);
    TSBFTPSServerEstablishSecureConnectionEvent.Callback OnEstablishSecureConnection = new TSBFTPSServerEstablishSecureConnectionEvent.Callback() {
        public void TSBFTPSServerEstablishSecureConnectionEventCallback(TObject Sender, TElSSLServer Server) {
            //...
        }
    }

Parameters

  • Server - secure server to which the connection has been established.

Description

    This event is fired by TElFTPSServer when it has to establish a secure connection.

Discuss this help topic in SecureBlackbox Forum