Discuss this help topic in SecureBlackbox Forum

TElSftpClient.OnAbsolutePath

TElSftpClient     See also     


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


This event is fired when the absolute path string is received from server.

Declaration

[C#]
    event TSBSftpAbsolutePathEvent OnAbsolutePath;
    delegate void TSBSftpAbsolutePathEvent(Object Sender, string Path);

[VB.NET]
    Event OnAbsolutePath As TSBSftpAbsolutePathEvent
    Delegate Sub TSBSftpAbsolutePathEvent(ByVal Sender As Object, ByVal Path As String)

[Pascal]
    property OnAbsolutePath : TSBSftpAbsolutePathEvent;
    TSBSftpAbsolutePathEvent = procedure (Sender: TObject; Path : string) of object;

[C++]
    void get_OnAbsolutePath(TSBSftpAbsolutePathEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnAbsolutePath(TSBSftpAbsolutePathEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBSftpAbsolutePathEvent)(void * _ObjectData, TObjectHandle Sender, const char * pcPath, int32_t szPath);

[PHP]
    TSBSftpAbsolutePathEvent|callable|NULL get_OnAbsolutePath()
    void set_OnAbsolutePath(TSBSftpAbsolutePathEvent|callable|NULL $Value)
    callable TSBSftpAbsolutePathEvent(TObject $Sender, string $Path)

[Java]
    TSBSftpAbsolutePathEvent getOnAbsolutePath();
    void setOnAbsolutePath(TSBSftpAbsolutePathEvent Value);
    TSBSftpAbsolutePathEvent.Callback OnAbsolutePath = new TSBSftpAbsolutePathEvent.Callback() {
        public void TSBSftpAbsolutePathEventCallback(TObject Sender, String Path) {
            //...
        }
    }

Parameters

  • Path - the full path string
  • pcPath - the full path string
  • szPath - the length of pcPath.

Description

    This event is fired by TElSftpClient when the absolute path value is received from server. This event is usually fired after calling the RequestAbsolutePath method.

See also:     RequestAbsolutePath    

Discuss this help topic in SecureBlackbox Forum