Using NonStatic-Api

nonstatic-api examples

Summoner

var rit = new ApiCall()
  .SelectApi<SummonerDto>(LolApiName.Summoner)
  .For(LolApiMethodName.Summoners)
  .AddParameter(new ApiParameter(LolApiPath.OnlySummonerId, (long)466244))
  .UseCache(false, false)//<== optional
  .Build(ServicePlatform.TR1)
  .Get();
Api.NonStaticApi.Summonerv3
	.GetSummonersOnlySummonerId(ServicePlatform.TR1, 466244);