public async Task <bool> call(ChallongeAPICaller caller)
 {
     return(await caller.POST(getAPIPath(), getParameters()));
 }
 public async Task <bool> call(ChallongeAPICaller caller)
 {
     return(await caller.POST(API, new ChallongeQueryParameters()));
 }
예제 #3
0
        public async Task <ParticipantResult> call(ChallongeAPICaller caller)
        {
            ParticipantQueryResult participantResult = await caller.POST <ParticipantQueryResult>(getAPIPath(), getParameters());

            return(participantResult.participant);
        }
        public async Task <TournamentResult> call(ChallongeAPICaller caller)
        {
            TournamentQueryResult result = await caller.POST <TournamentQueryResult>(getAPIPath(), getParameters());

            return(result.tournament);
        }