Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorage.ChunkedUploadThreshold

TElDropboxDataStorage     See also     


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


Specifies the threshold for chunked uploads.

Declaration

[C#]
    long ChunkedUploadThreshold;

[VB.NET]
    Property ChunkedUploadThreshold As Long

[Pascal]
    property ChunkedUploadThreshold : Int64;

[C++]
    int64_t get_ChunkedUploadThreshold();
    void set_ChunkedUploadThreshold(int64_t Value);

[PHP]
    integer get_ChunkedUploadThreshold()
    void set_ChunkedUploadThreshold(integer $Value)

[Java]
    long getChunkedUploadThreshold();
    void setChunkedUploadThreshold(long Value);

Description

    The Dropbox supports two methods of file upload: files_put (for files smaller than 150 MB), and chunked_upload (for larger files). This property specifies the maximum file size in bytes, after which the chunked upload method should be used. The default value is 157286400 (150 MB).

See also:     ChunkedUploadChunkSize     WriteObject    

Discuss this help topic in SecureBlackbox Forum