C# 클래스 RiotSharp.TournamentEndpoint.TournamentCodeDetail

Class representing the details of a tournament code.
파일 보기 프로젝트 열기: BenFradet/RiotSharp

Private Properties

프로퍼티 타입 설명
TournamentCodeDetail System

공개 메소드들

메소드 설명
Get ( string tournamentCode ) : TournamentCodeDetail

Returns the tournament code object associated with a tournament code string.

GetAsync ( string tournamentCode ) : Task

Returns the tournament code object associated with a tournament code string asynchronously.

Update ( List allowedSummonerIds, TournamentSpectatorType spectatorType, TournamentPickType pickType, TournamentMapType mapType ) : bool

Update the pick type, map, spectator type, or allowed summoners for a code.

UpdateAsync ( List allowedSummonerIds, TournamentSpectatorType spectatorType, TournamentPickType pickType, TournamentMapType mapType ) : Task

Update the pick type, map, spectator type, or allowed summoners for a code asynchronously.

비공개 메소드들

메소드 설명
TournamentCodeDetail ( ) : System

메소드 상세

Get() 공개 정적인 메소드

Returns the tournament code object associated with a tournament code string.
public static Get ( string tournamentCode ) : TournamentCodeDetail
tournamentCode string The tournament code.
리턴 TournamentCodeDetail

GetAsync() 공개 정적인 메소드

Returns the tournament code object associated with a tournament code string asynchronously.
public static GetAsync ( string tournamentCode ) : Task
tournamentCode string The tournament code.
리턴 Task

Update() 공개 메소드

Update the pick type, map, spectator type, or allowed summoners for a code.
public Update ( List allowedSummonerIds, TournamentSpectatorType spectatorType, TournamentPickType pickType, TournamentMapType mapType ) : bool
allowedSummonerIds List Comma separated list of summoner Ids.
spectatorType TournamentSpectatorType The spectator type.
pickType TournamentPickType The pick type.
mapType TournamentMapType The map type.
리턴 bool

UpdateAsync() 공개 메소드

Update the pick type, map, spectator type, or allowed summoners for a code asynchronously.
public UpdateAsync ( List allowedSummonerIds, TournamentSpectatorType spectatorType, TournamentPickType pickType, TournamentMapType mapType ) : Task
allowedSummonerIds List Comma separated list of summoner Ids.
spectatorType TournamentSpectatorType The spectator type.
pickType TournamentPickType The pick type.
mapType TournamentMapType The map type.
리턴 Task