Skip to main content
A newer version of this page is available. .
Tab

UploadAdvancedModeSettings.PacketSize Property

Gets or sets the size of file packets.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(200000)]
public int PacketSize { get; set; }

Property Value

Type Default Description
Int32 200000

An Int32 value specifying the size of the packets in bytes.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to PacketSize
ASP.NET MVC Extensions UploadControlSettings
.AdvancedModeSettings .PacketSize
ASP.NET Web Forms Controls ASPxUploadControl
.AdvancedModeSettings .PacketSize

Remarks

In the Advanced Upload Mode, the uploaded file is sent to the server in small packets (one by one) and is saved into a temporary file within a specific server folder. The PacketSize property specifies the size of the packets in bytes.

See Also