コード例 #1
0
		public static void Initialize(string accessKey, string secretKey)
		{
			lock (padlock)
			{
				Credentials = new ApiAccess(accessKey, secretKey);
			}
		}
コード例 #2
0
		public static void Initialize(string accessKey, string secretKey, string hostname, string version, int port ) 
		{
			lock (padlock)
			{
				Credentials = new ApiAccess(accessKey, secretKey, hostname, version, port);
			}
		}
コード例 #3
0
		public FactoryService(ApiAccess apiAccess, Factory factory)
			: base(apiAccess)
		{
			if (factory == null) { throw new ArgumentNullException("factory"); }

			Initialize(factory.Id);
		}
コード例 #4
0
 public ServiceBase(ApiAccess apiAccess)
 {
     Initialize(apiAccess);
 }
コード例 #5
0
 public RequestFactory(IConfigurationService configurationService)
 {
     _apiAccess = configurationService.Get();
 }
コード例 #6
0
 public RequestFactory(ApiAccess apiAccess)
 {
     _apiAccess = apiAccess;
 }
コード例 #7
0
		public RequestFactory(IConfigurationService configurationService)
		{
			_apiAccess = configurationService.Get();
		}
コード例 #8
0
		public RequestFactory(ApiAccess apiAccess)
		{
			_apiAccess = apiAccess;
		}
コード例 #9
0
		public FactoryService(ApiAccess apiAccess, string factoryId)
			: base(apiAccess)
		{
			Initialize(factoryId);
		}
コード例 #10
0
		public TelestreamCloudService(ApiAccess apiAccess)
			: base(apiAccess)
		{
		}