aspnetmvc-devexpress-dot-web-dot-mvc-dot-uploadcontrolsettings-0fbf1650.md
Gets or sets a value that defines the upload control storage.
Namespace : DevExpress.Web.Mvc
Assembly : DevExpress.Web.Mvc5.v25.2.dll
NuGet Package : DevExpress.Web.Mvc5
public UploadControlUploadStorage UploadStorage { get; set; }
Public Property UploadStorage As UploadControlUploadStorage
| Type | Description |
|---|---|
| UploadControlUploadStorage |
One of the UploadControlUploadStorage enumeration values.
|
Available values:
| 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).
| | SharePoint |
The control uploads files to SharePoint.
|
See Also