public DiscogsClient(OAuthCompleteInformation oAuthCompleteInformation, string userAgent = null, int timeOut = 5000)
 {
     _Client = new DiscogsWebClient(oAuthCompleteInformation, timeOut)
     {
         UserAgent = userAgent
     };
 }
 public DiscogsClientTest()
 {
     _OAuthCompleteInformation = null;
     //new OAuthCompleteInformation("", "", "", "");
     _DiscogsClient = new DiscogsClient(_OAuthCompleteInformation);
 }
 public DiscogsWebClient(OAuthCompleteInformation oAuthCompleteInformation, string userAgent, int timeOut = 10000) :
     base(userAgent, timeOut)
 {
     _OAuthCompleteInformation = oAuthCompleteInformation;
 }
示例#4
0
 public DiscogsWebClient(OAuthCompleteInformation oAuthCompleteInformation, int timeOut = 10000)
 {
     _OAuthCompleteInformation = oAuthCompleteInformation;
     _Client = GetClient(UrlBase, timeOut);
 }