Exemplo n.º 1
0
 private StaticRiotApi(string apiKey)
 {
     requester = Requester.Instance;
     Requester.RootDomain = "euw.api.pvp.net";
     Requester.ApiKey = apiKey;
 }
Exemplo n.º 2
0
 private StatusRiotApi()
 {
     requester = Requester.Instance;
 }
Exemplo n.º 3
0
 private StaticRiotApi(string apiKey)
 {
     Requesters.StaticApiRequester = new Requester(apiKey);
     requester = Requesters.StaticApiRequester;
     cache = new Cache();
 }
Exemplo n.º 4
0
 private StaticRiotApi(string apiKey)
 {
     requester = Requester.Instance;
     Requester.ApiKey = apiKey;
 }
Exemplo n.º 5
0
 private StatusRiotApi()
 {
     Requesters.StatusApiRequester = new Requester();
     requester = Requesters.StatusApiRequester;
 }
Exemplo n.º 6
0
 private StaticRiotApi(string apiKey)
 {
     requester            = Requester.Instance;
     Requester.RootDomain = "global.api.pvp.net";
     Requester.ApiKey     = apiKey;
 }
Exemplo n.º 7
0
 private StaticRiotApi(string apiKey)
 {
     Requesters.StaticApiRequester = new Requester(apiKey);
     requester = Requesters.StaticApiRequester;
     cache     = new Cache();
 }
Exemplo n.º 8
0
 private StatusRiotApi()
 {
     requester = Requester.Instance;
 }