示例#1
0
 public IActionResult DownloadImages()
 {
     byte[] data = _encryptionService.DownloadImages();
     if (data == null)
     {
         return(NotFound());
     }
     return(File(data, "application/zip", $"test.zip"));
 }