Esempio n. 1
0
 public Cloudflare(
     CloudflareOptions options,
     IProxyService proxyService,
     LookupClientProvider dnsClient,
     SecretServiceManager ssm,
     ILogService log,
     ISettingsService settings) : base(dnsClient, log, settings)
 {
     _options = options;
     _hc      = proxyService.GetHttpClient();
     _ssm     = ssm;
 }
Esempio n. 2
0
 public Cloudflare(
     CloudflareOptions options,
     DomainParseService domainParser,
     ProxyService proxyService,
     LookupClientProvider dnsClient,
     ILogService log,
     ISettingsService settings) : base(dnsClient, log, settings)
 {
     _options      = options;
     _hc           = proxyService.GetHttpClient();
     _domainParser = domainParser;
 }