Gets or sets the value indicating whether status information of upload should be calculated.
Namespace:
EasyAlgo.EAUploadAssembly: EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.2.0
Syntax
| C# |
|---|
public bool EnableProgressInfo { get; set; } |
| Visual Basic (Declaration) |
|---|
Public Property EnableProgressInfo As Boolean |
Field Value
Type: System..::.Booleantrue if status information of upload should be calculated; otherwise, false. Default value is true
Remarks
This property is a reflection of EAUpload configuration parameter (<EasyAlgo.EAUpload>/<Environment ... EnableProgressInfo="" ... >).
When upload process is in progress EAUpload component can provide a status information of this upload such as transfer rate, percents done etc. see UploadStatus for more information.
If you don't need to get status information of the upload, set this property to false and it will reduce processor time usage.
Note:If you want to change this property at the runtime, you should define it at the Initializing stage of an upload (see EasyAlgo.EAUpload..::.UploadState for more information). All changes for processed uploads will be ignored.
Also if you have changed this property for the whole of EAUpload component (EAUploadModule..::.CommonEnvironment property) then new value will be used for the new uploads only.
When upload process is in progress EAUpload component can provide a status information of this upload such as transfer rate, percents done etc. see UploadStatus for more information.
If you don't need to get status information of the upload, set this property to false and it will reduce processor time usage.
Examples
You can find an example in the description of UploadEnvironment class.
