Exemplo n.º 1
0
 public PushServiceClientConverter(PushServiceOptions options, IHttpClientFactory httpClientFactory)
 {
     _options           = options;
     _httpClientFactory = httpClientFactory ?? throw new ArgumentNullException(nameof(httpClientFactory));
 }
 public PushServiceExtensionConfigProvider(IOptions <PushServiceOptions> options, IHttpClientFactory httpClientFactory)
 {
     _options           = options.Value;
     _httpClientFactory = httpClientFactory;
 }