コード例 #1
0
 public ImageServiceMiddleware(RequestDelegate next, IImageService imageService, IEncodedStringImageTransformationRequestConverter imageRequestConverter)
 {
     this.next                  = next;
     this.imageService          = imageService;
     this.imageRequestConverter = imageRequestConverter;
 }
コード例 #2
0
 public TransformedImageCache(ICachedTransformBlobStorage cacheStorage, IEncodedStringImageTransformationRequestConverter requestConverter)
 {
     this.cacheStorage     = cacheStorage;
     this.requestConverter = requestConverter;
 }