Skip to main content

FileSystemConfiguration.AllowUpload Property

Specifies whether users can upload files.

Namespace: DevExtreme.AspNet.Mvc.FileManagement

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public bool AllowUpload { get; set; }

Property Value

Type Description
Boolean

true, to allow users to upload files; otherwise, false.

Remarks

API Controller:

public IActionResult FileSystem(FileSystemCommand command, string arguments) {
    var config = new FileSystemConfiguration {
        // ...
        AllowUpload = true,
        // ...
    }
}

Concepts

Online Demo

See Also