Represents possible values of upload process state.
Namespace:
EasyAlgo.EAUploadAssembly: EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.1.0
Syntax
| C# |
|---|
public enum UploadState |
| Visual Basic (Declaration) |
|---|
Public Enumeration UploadState |
Members
| Member name | Description | |
|---|---|---|
| Initializing |
Initialization stage. Upload process does not yet started. On this stage you can define a specific environment for Upload object.
| |
| Uploading |
Uploading stage. POST request with files is processed by EAUpload component. On this stage you can change environment settins, get a status information of the upload, get an access to processed form fields.
| |
| Complete |
Complete stage. Upload was processed successfully. All files were uploaded and available for management.
| |
| Failed |
Failed stage. It means that the exception occurs during upload process. Upload was processed unsuccessfully.
| |
| Cancelled |
The upload was canceled. It means that the Upload..::.CancelUpload(Boolean) method is called by your application or user cancels request from a browser.
|
