Example #1
0
 public IActionResult Get(string productKey, string imageName)
 {
     var(image, contentType) = service.GetImageStream(productKey, imageName);
     return(File(image, contentType));
 }