Discuss this help topic in SecureBlackbox Forum

TElSimpleSFTPClient.SFTPExt

TElSimpleSFTPClient     


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


Additional server attributes.

Declaration

[C#]
    TSBSftpExtendedAttribute[] SFTPExt;

[VB.NET]
    Property SFTPExt As TSBSftpExtendedAttribute[]

[Pascal]
    property SFTPExt: TSBSftpExtendedAttributes;
    
    TSBSftpExtendedAttributes = array of TSBSftpExtendedAttribute;
    TSBSftpExtendedAttribute = record
    ExtType: string;
    ExtData: string;
    end;

[C++]
    void get_SFTPExt(std::vector<TSBSftpExtendedAttributeHandle> &OutResult);
    void set_SFTPExt(const std::vector<TSBSftpExtendedAttributeHandle> &Value);

[PHP]
    array of TSBSftpExtendedAttribute get_SFTPExt()
    void set_SFTPExt(array of TSBSftpExtendedAttribute|NULL &$Value)

[Java]
    TSBSftpExtendedAttribute[] getSFTPExt();
    void setSFTPExt(TSBSftpExtendedAttribute[] Value);

Description

    Set of any pairs "name-value" that depends on server.
    This property makes sense only for Sftp versions 4 and later.

Discuss this help topic in SecureBlackbox Forum