public ProjectionsClient(ILogger log)
 {
     _client = new HttpAsyncClient(log);
 }
 public ProjectionsClient(ILogger log, TimeSpan operationTimeout)
 {
     _operationTimeout = operationTimeout;
     _client = new HttpAsyncClient(_operationTimeout);
 }
Exemple #3
0
 public UsersClient(ILogger log, TimeSpan operationTimeout)
 {
     _operationTimeout = operationTimeout;
     _client = new HttpAsyncClient(log);
 }