예제 #1
0
 public DiscogsClient(OAuthCompleteInformation oAuthCompleteInformation, string userAgent = null, int timeOut = 5000)
 {
     _Client = new DiscogsWebClient(oAuthCompleteInformation, timeOut)
     {
         UserAgent = userAgent
     };
 }
예제 #2
0
 public DiscogsClient(TokenAuthenticationInformation tokenAuthenticationInformation, string userAgent = null, int timeOut = 5000)
 {
     _Client = new DiscogsWebClient(tokenAuthenticationInformation, userAgent, timeOut);
 }