/// <summary>
 /// Initializes a new instance of the <see cref="WebAssetHttpHandler"/> class.
 /// </summary>
 /// <param name="assetRegistry">The asset registry.</param>
 /// <param name="httpResponseCompressor">The HTTP response compressor.</param>
 /// <param name="httpResponseCacher">The HTTP response cacher.</param>
 public WebAssetHttpHandler(IWebAssetGroupReader reader, IHttpResponseCompressor httpResponseCompressor, IHttpResponseCacher httpResponseCacher)
 {
     this.reader = reader;
     this.httpResponseCompressor = httpResponseCompressor;
     this.httpResponseCacher = httpResponseCacher;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WebAssetHttpHandler"/> class.
 /// </summary>
 /// <param name="assetRegistry">The asset registry.</param>
 /// <param name="httpResponseCompressor">The HTTP response compressor.</param>
 /// <param name="httpResponseCacher">The HTTP response cacher.</param>
 public WebAssetHttpHandler(IWebAssetGroupReader reader, IHttpResponseCompressor httpResponseCompressor, IHttpResponseCacher httpResponseCacher)
 {
     this.reader = reader;
     this.httpResponseCompressor = httpResponseCompressor;
     this.httpResponseCacher     = httpResponseCacher;
 }