Gets or sets value that determines bandwidth limit, in bytes per second, for requests which are processed by EAUpload component.

Namespace:  EasyAlgo.EAUpload
Assembly:  EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.2.0

Syntax

C#
public int BandwidthLimitation { get; set; }
Visual Basic (Declaration)
Public Property BandwidthLimitation As Integer

Field Value

Type: System..::.Int32
A Int32 value that representes the bandwidth limit, in bytes per second, of an upload process. Default value is -1.

Remarks

This property is a reflection of EAUpload configuration parameter (<EasyAlgo.EAUpload>/<Environment ... BandwidthLimitation="" ... >).
By using this property you can specify a bandwidth limit for the all uploads or for the specific upload. All uploads are parsed without any limitations by default.

Note:If you want to change this property at the runtime, you can define it at the Initializing stage or at the Uploading stage of an upload (see EasyAlgo.EAUpload..::.UploadState for more information). Also if you have changed this property for the whole of EAUpload component (CommonEnvironment property), then new value will be used for the all processed and new uploads.

See Also