Discuss this help topic in SecureBlackbox Forum

TElFTPSServer.OnFileListCompleted

TElFTPSServer     See also     


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


This event is fired when file list request is completed.

Declaration

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

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

[Pascal]
    property OnFileListCompleted: TNotifyEvent;

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

[PHP]
    TNotifyEvent|callable|NULL get_OnFileListCompleted()
    void set_OnFileListCompleted(TNotifyEvent|callable|NULL $Value)
    callable TNotifyEvent(TObject $Sender)

[Java]
    TNotifyEvent getOnFileListCompleted();
    void setOnFileListCompleted(TNotifyEvent Value);
    TNotifyEvent.Callback OnFileListCompleted = new TNotifyEvent.Callback() {
        public void TNotifyEventCallback(TObject Sender) {
            //...
        }
    }

Description

    This event is fired by TElFTPSServer when a file list request is completed.

See also:     OnFileListRequest    

Discuss this help topic in SecureBlackbox Forum