Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.OnAfterParseFileListEntry

TElSimpleFTPSClient     See also     


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


This event is fired when a file info has been parsed.

Declaration

[C#]
    event TSBFTPSAfterParseFileListEntry OnAfterParseFileListEntry;
    delegate void TSBFTPSAfterParseFileListEntry(Object Sender, string Entry, TElFTPFileInfo FileInfo, ref bool Success);

[VB.NET]
    Event OnAfterParseFileListEntry As TSBFTPSAfterParseFileListEntry
    Delegate Sub TSBFTPSAfterParseFileListEntry(ByVal Sender As Object, ByVal Entry As String, ByVal FileInfo As TElFTPFileInfo, ByRef Success As Boolean)

[Pascal]
    property OnAfterParseFileListEntry : TSBFTPSAfterParseFileListEntry;
    TSBFTPSAfterParseFileListEntry = procedure(Sender : TObject; const Entry : string; FileInfo : TElFTPFileInfo; var Success : boolean) of object;

[C++]
    void get_OnAfterParseFileListEntry(TSBFTPSAfterParseFileListEntry &pMethodOutResult, void * &pDataOutResult);
    void set_OnAfterParseFileListEntry(TSBFTPSAfterParseFileListEntry pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBFTPSAfterParseFileListEntry)(void * _ObjectData, TObjectHandle Sender, const char * pcEntry, int32_t szEntry, TElFTPFileInfoHandle FileInfo, int8_t &Success);

[PHP]
    TSBFTPSAfterParseFileListEntry|callable|NULL get_OnAfterParseFileListEntry()
    void set_OnAfterParseFileListEntry(TSBFTPSAfterParseFileListEntry|callable|NULL $Value)
    callable TSBFTPSAfterParseFileListEntry(TObject $Sender, string $Entry, TElFTPFileInfo $FileInfo, bool &$Success)

[Java]
    TSBFTPSAfterParseFileListEntry getOnAfterParseFileListEntry();
    void setOnAfterParseFileListEntry(TSBFTPSAfterParseFileListEntry Value);
    TSBFTPSAfterParseFileListEntry.Callback OnAfterParseFileListEntry = new TSBFTPSAfterParseFileListEntry.Callback() {
        public void TSBFTPSAfterParseFileListEntryCallback(TObject Sender, String Entry, TElFTPFileInfo FileInfo, TSBBoolean Success) {
            //...
        }
    }

Parameters

  • Entry - the entry that has been parsed.
  • FileInfo - contains file info.
  • Success - set this parameter to True if the info has been successfully parsed.
  • pcEntry - the entry that has been parsed.
  • szEntry - the length of pcEntry.

Description

    This event is fired after each file list entry is parsed by GetFileList.

See also:     GetFileList     OnBeforeParseFileListEntry    

Discuss this help topic in SecureBlackbox Forum