Discuss this help topic in SecureBlackbox Forum

TElSftpClient.OnFileAttributes

TElSftpClient     See also     


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


This event is fired when the file attributes packet was received.

Declaration

[C#]
    event TSBSftpFileAttributesEvent OnFileAttributes;
    delegate void TSBSftpFileAttributesEvent(Object Sender, TElSftpFileAttributes Attributes);

[VB.NET]
    Event OnFileAttributes As TSBSftpFileAttributesEvent
    Delegate Sub TSBSftpFileAttributesEvent(ByVal Sender As Object, ByVal Attributes As TElSftpFileAttributes)

[Pascal]
    property OnFileAttributes : TSBSftpFileAttributesEvent;
    TSBSftpDirectoryListingEvent = procedure (Sender: TObject; Attributes : TElSftpFileAttributes) of object;

[C++]
    void get_OnFileAttributes(TSBSftpFileAttributesEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnFileAttributes(TSBSftpFileAttributesEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBSftpFileAttributesEvent)(void * _ObjectData, TObjectHandle Sender, TElSftpFileAttributesHandle Attributes);

[PHP]
    TSBSftpFileAttributesEvent|callable|NULL get_OnFileAttributes()
    void set_OnFileAttributes(TSBSftpFileAttributesEvent|callable|NULL $Value)
    callable TSBSftpFileAttributesEvent(TObject $Sender, TElSftpFileAttributes $Attributes)

[Java]
    TSBSftpFileAttributesEvent getOnFileAttributes();
    void setOnFileAttributes(TSBSftpFileAttributesEvent Value);
    TSBSftpFileAttributesEvent.Callback OnFileAttributes = new TSBSftpFileAttributesEvent.Callback() {
        public void TSBSftpFileAttributesEventCallback(TObject Sender, TElSftpFileAttributes Attributes) {
            //...
        }
    }

Parameters

  • Attributes - TElSftpFileAttributes object

Description

    This event is fired by TElSftpClient when the file attributes packet is received from the server. This event follows the call to RequestAttributes routine.

See also:     RequestAttributes    

Discuss this help topic in SecureBlackbox Forum