Discuss this help topic in SecureBlackbox Forum

TElSftpClient.DownloadBlockSize

TElSftpClient     See also     


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


This property specifies the size of the single download request.

Declaration

[C#]
    int DownloadBlockSize;

[VB.NET]
    Property DownloadBlockSize As Integer

[Pascal]
    property DownloadBlockSize : integer;

[C++]
    int32_t get_DownloadBlockSize();
    void set_DownloadBlockSize(int32_t Value);

[PHP]
    integer get_DownloadBlockSize()
    void set_DownloadBlockSize(integer $Value)

[Java]
    int getDownloadBlockSize();
    void setDownloadBlockSize(int Value);

Description

    Use this property to control the size of the single download request. The servers don't limit download request size, however the buffer is allocated to store the requests, so the larger the value is, the memory block is needed. See Increasing SFTP speed for details.

See also:     SftpBufferSize     UploadBlockSize    

Discuss this help topic in SecureBlackbox Forum