FileSystemConfiguration.UploadConfiguration Property
In This Article
Specifies file upload configuration settings.
Namespace: DevExtreme.AspNet.Mvc.FileManagement
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public UploadConfiguration UploadConfiguration { get; set; }
#Property Value
Type | Description |
---|---|
Upload |
Upload configuration settings. |
#Remarks
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