FileSystemCommandResult.Result Property
Specifies the command’s result.
Namespace: DevExtreme.AspNet.Mvc.FileManagement
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public object Result { get; set; }
Property Value
Type | Description |
---|---|
Object | The command’s result. |
Remarks
public class FileManagerApiController : Controller {
public object FileSystem(FileSystemCommand command, string arguments) {
var result = processor.Execute(command, arguments);
return Ok(result.GetClientCommandResult());
//...
}
}
Concepts
Online Demo
Online Example
See Also