Discuss this help topic in SecureBlackbox Forum

TElSimpleSFTPClient.UploadBlockSize

TElSimpleSFTPClient     See also     


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


This property specifies the size of a single upload request.

Declaration

[C#]
    int UploadBlockSize;

[VB.NET]
    Property UploadBlockSize As Integer

[Pascal]
    property UploadBlockSize : integer;

[C++]
    int32_t get_UploadBlockSize();
    void set_UploadBlockSize(int32_t Value);

[PHP]
    integer get_UploadBlockSize()
    void set_UploadBlockSize(integer $Value)

[Java]
    int getUploadBlockSize();
    void setUploadBlockSize(int Value);

Description

    Use this property to control the size of a single upload request. Servers usually limit single request size to 128Kb. See Increasing SFTP speed topic for details.
    To automatically adjust block size for optimal performace, use AutoAdjustTransferBlock property.

See also:     DownloadBlockSize     PipelineLength    

Discuss this help topic in SecureBlackbox Forum