コード例 #1
0
 private IApiClient GetApiClient()
 {
     var key = new AuthenticationKey(628894, "TQL1KBeSIysqCHZ6slJnWLJM8kQvELjfBqoLD87a1gY9UKj64x2kpPUh2gNsuvgE");
     var mockCacheProvider = new Mock<ICacheProvider>();
     var client = new ApiClient(key, mockCacheProvider.Object);
     return client;
 }
コード例 #2
0
ファイル: Request.cs プロジェクト: garrym/eve-online-fusion
 public Request(RequestType requestType, AuthenticationKey authenticationKey = null)
 {
     RequestType = requestType;
     AuthenticationKey = authenticationKey;
 }