Beispiel #1
0
        /// 33.)
        public void GetAllLeaguesForPlayer(Double summonerId, SummonerLeaguesDTO.Callback callback)
        {
            SummonerLeaguesDTO cb = new SummonerLeaguesDTO(callback);

            InvokeWithCallback("leaguesServiceProxy", "getAllLeaguesForPlayer", new object[] { summonerId }, cb);
        }
Beispiel #2
0
        /// 13.)
        public void GetAllMyLeagues(SummonerLeaguesDTO.Callback callback)
        {
            SummonerLeaguesDTO cb = new SummonerLeaguesDTO(callback);

            InvokeWithCallback("leaguesServiceProxy", "getAllMyLeagues", new object[] { }, cb);
        }
Beispiel #3
0
        /// 24.)
        public void GetLeaguesForTeam(String teamName, SummonerLeaguesDTO.Callback callback)
        {
            SummonerLeaguesDTO cb = new SummonerLeaguesDTO(callback);

            InvokeWithCallback("leaguesServiceProxy", "getLeaguesForTeam", new object[] { teamName }, cb);
        }
Beispiel #4
0
 public SummonerLeaguesDTO(SummonerLeaguesDTO.Callback callback)
 {
     this.callback = callback;
 }