Discuss this help topic in SecureBlackbox Forum

TElFTPSServer.OnStatusRequest

TElFTPSServer     


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


This event is fired when server receives a status request from the client.

Declaration

[C#]
    event TSBFTPSServerInformationRequestEvent OnStatusRequest;
    delegate void TSBFTPSServerInformationRequestEvent(Object Sender, ref string Information);

[VB.NET]
    Event OnStatusRequest As TSBFTPSServerInformationRequestEvent
    Delegate Sub TSBFTPSServerInformationRequestEvent(ByVal Sender As Object, ByRef Information As String)

[Pascal]
    property OnStatusRequest : TSBFTPSServerInformationRequestEvent;
    TSBFTPSServerInformationRequestEvent = procedure (Sender: TObject; var Information : string) of object;

[C++]
    void get_OnStatusRequest(TSBFTPSServerInformationRequestEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnStatusRequest(TSBFTPSServerInformationRequestEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBFTPSServerInformationRequestEvent)(void * _ObjectData, TObjectHandle Sender, char * pcInformation, int32_t &szInformation);

[PHP]
    TSBFTPSServerInformationRequestEvent|callable|NULL get_OnStatusRequest()
    void set_OnStatusRequest(TSBFTPSServerInformationRequestEvent|callable|NULL $Value)
    callable TSBFTPSServerInformationRequestEvent(TObject $Sender, string &$Information)

[Java]
    TSBFTPSServerInformationRequestEvent getOnStatusRequest();
    void setOnStatusRequest(TSBFTPSServerInformationRequestEvent Value);
    TSBFTPSServerInformationRequestEvent.Callback OnStatusRequest = new TSBFTPSServerInformationRequestEvent.Callback() {
        public void TSBFTPSServerInformationRequestEventCallback(TObject Sender, TSBString Information) {
            //...
        }
    }

Parameters

  • Information - contains server status information.
  • pcInformation - contains server status information.
  • szInformation - the length of pcInformation.

Description

    This event is fired by TElFTPSServer when it has received a status request from the client.

Discuss this help topic in SecureBlackbox Forum