Esempio n. 1
0
 public HttpGetCdnEksCommand(HttpGetCdnContentCommand getCommand, EksCacheControlHeaderProcessor cacheControlHeaderProcessor)
 {
     _GetCommand = getCommand ?? throw new ArgumentNullException(nameof(getCommand));
     _CacheControlHeaderProcessor = cacheControlHeaderProcessor ?? throw new ArgumentNullException(nameof(cacheControlHeaderProcessor));
 }
Esempio n. 2
0
 public HttpGetCdnImmutableNonExpiringContentCommand(HttpGetCdnContentCommand getCommand, IHttpResponseHeaderConfig httpResponseHeaderConfig)
 {
     _GetCommand = getCommand ?? throw new ArgumentNullException(nameof(getCommand));
     _HttpResponseHeaderConfig = httpResponseHeaderConfig ?? throw new ArgumentNullException(nameof(httpResponseHeaderConfig));
 }