public ExternalEndpointHealthCheck(IOptions <ServiceSettings> options)
 {
     settings = options.Value;
 }
示例#2
0
 public WeatherClient(HttpClient httpClient, IOptions <ServiceSettings> options)
 {
     this.httpClient = httpClient;
     settings        = options.Value;
 }