Example #1
0
 public async Task GetLatestConfig(string id, [FromServices] HttpGetCdnContentCommand <AppConfigContentEntity> command)
 {
     await command.Execute(HttpContext, id);
 }
 public async Task GetExposureKeySet(string id, [FromServices] HttpGetCdnContentCommand command)
 {
     await command.Execute(HttpContext, id);
 }
 public async Task GetRiskCalculationParameters(string id, [FromServices] HttpGetCdnContentCommand command)
 {
     await command.Execute(HttpContext, ContentTypes.RiskCalculationParameters, id);
 }
 public async Task GetAppConfig(string id, [FromServices] HttpGetCdnContentCommand command)
 {
     await command.Execute(HttpContext, ContentTypes.AppConfig, id);
 }
 public async Task GetLatestConfig([FromServices] HttpGetCdnContentCommand <ManifestEntity> command)
 {
     await command.Execute(HttpContext, "ignored...");
 }
Example #6
0
 public async Task GetResourceBundle(string id, [FromServices]HttpGetCdnContentCommand<ResourceBundleContentEntity> command)
 {
     await command.Execute(HttpContext, id);
 }