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

UploadControlUploadStorage Enum

Lists values that specify the type of upload storage used by the ASPxUploadControl.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public enum UploadControlUploadStorage

Members

Name Description
NotSet

The upload storage is not set. File saving can be implemented manually by handling the ASPxUploadControl.FileUploadComplete event.

FileSystem

The control uploads files to the server’s physical file system. The files are automatically saved to a folder specified by the UploadControlFileSystemSettings.UploadFolder property.

Azure

The control uploads files to a storage on the Azure Service.

Amazon

The control uploads files to a storage on the Amazon Simple Storage Service (Amazon S3).

Dropbox

The control uploads files to a storage on the Dropbox Service.

GoogleDrive

The control uploads files to Google Drive.

GoogleDrivePersonal

The control uploads files to Google Drive (personal account).

OneDrive

The control uploads files to OneDrive.

OneDrivePersonal

The control uploads files to OneDrive (personal account).

Related API Members

The following properties accept/return UploadControlUploadStorage values:

Remarks

The values listed by this enumeration are used to set the ASPxUploadControl.UploadStorage property.

See Also