Пример #1
0
 /// <summary>
 /// Initializes a client using a custom client configuration
 /// </summary>
 /// <remarks>Custom configurations can be useful e.g. when the AWS credentials are retrieved from a different storage
 /// mechanism than the application configuration file</remarks>
 public SimpleClient(MTurkConfig config)
 {
     Proxy = new MTurkClient(config);
 }
Пример #2
0
 /// <summary>
 /// Initializes a client using the configuration from the application configuration file (see <see cref="MTurkConfig"/>)
 /// </summary>
 public SimpleClient()
 {
     Proxy = new MTurkClient();
 }