UploadConfiguration Class
Provides access to the file upload configuration settings.
Namespace: DevExtreme.AspNet.Mvc.FileManagement
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public class UploadConfiguration
#Related API Members
The following members return UploadConfiguration objects:
#Remarks
Use the UploadConfiguration object to specify file upload configuration settings.
API Controller:
C#
ArtsDBContext ArtsDBContext;
public IActionResult FileSystem(FileSystemCommand command, string arguments) {
var config = new FileSystemConfiguration {
UploadConfiguration = new UploadConfiguration {
MaxFileSize = 1048576
},
//...
}
}
#Concepts
#Online Demo
See Also