示例#1
0
 public GodaddyDnsValidation(
     LookupClientProvider dnsClient,
     ILogService logService,
     ISettingsService settings,
     GodaddyOptions options,
     ProxyService proxyService)
     : base(dnsClient, logService, settings)
     => _client = new DnsManagementClient(options.ApiKey.Value, logService, proxyService);
示例#2
0
 public GodaddyDnsValidation(
     LookupClientProvider dnsClient,
     ILogService logService,
     ISettingsService settings,
     DomainParseService domainParser,
     GodaddyOptions options,
     IProxyService proxyService)
     : base(dnsClient, logService, settings)
 {
     _client       = new DnsManagementClient(options.ApiKey.Value, options.ApiSecret?.Value ?? "", logService, proxyService);
     _domainParser = domainParser;
 }