示例#1
0
 public ApiQueueValidator(Uri managementUri, ApiTokenProviderFactory tokenFactory)
 {
     _managementUri = managementUri;
     _tokenFactory = tokenFactory;
 }
示例#2
0
 public ApiClientFactory(Uri sbUri, Uri httpsUri, NetworkCredential credentials)
 {
     _sbUri = sbUri;
     _httpsUri = httpsUri;
     _tokenProvider = new ApiTokenProviderFactory(httpsUri, credentials);
 }