Show / Hide Table of Contents

Class TournamentV4Endpoints

TournamentV4 endpoints. This class is automatically generated.

Official API Reference https://developer.riotgames.com/api-methods/#tournament-v4

Inheritance
System.Object
Endpoints
TournamentV4Endpoints
Inherited Members
Endpoints.QUERY_PARAMS_EMPTY
Endpoints.RiotApi
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: MingweiSamuel.Camille
Assembly: Camille.dll
Syntax
public class TournamentV4Endpoints : Endpoints

Methods

| Improve this Doc View Source

GetLobbyEventsByCode(Region, String, Nullable<CancellationToken>)

Gets a list of lobby events by tournament code.

Official API Reference: https://developer.riotgames.com/api-methods/#tournament-v4/GET_getLobbyEventsByCode

Declaration
public LobbyEventWrapper GetLobbyEventsByCode(Region region, string tournamentCode, CancellationToken? cancellationToken = default(CancellationToken? ))
Parameters
Type Name Description
Region region

Region to query.

System.String tournamentCode

The short code to look up lobby events for (required)

System.Nullable<System.Threading.CancellationToken> cancellationToken

A cancellation token that can be used to cancel this task.

Returns
Type Description
LobbyEventWrapper
| Improve this Doc View Source

GetLobbyEventsByCodeAsync(Region, String, Nullable<CancellationToken>)

Gets a list of lobby events by tournament code.

Official API Reference: https://developer.riotgames.com/api-methods/#tournament-v4/GET_getLobbyEventsByCode

Declaration
public Task<LobbyEventWrapper> GetLobbyEventsByCodeAsync(Region region, string tournamentCode, CancellationToken? cancellationToken = default(CancellationToken? ))
Parameters
Type Name Description
Region region

Region to query.

System.String tournamentCode

The short code to look up lobby events for (required)

System.Nullable<System.Threading.CancellationToken> cancellationToken

A cancellation token that can be used to cancel this task.

Returns
Type Description
System.Threading.Tasks.Task<LobbyEventWrapper>
| Improve this Doc View Source

GetTournamentCode(Region, String, Nullable<CancellationToken>)

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

Official API Reference: https://developer.riotgames.com/api-methods/#tournament-v4/GET_getTournamentCode

Declaration
public TournamentCode GetTournamentCode(Region region, string tournamentCode, CancellationToken? cancellationToken = default(CancellationToken? ))
Parameters
Type Name Description
Region region

Region to query.

System.String tournamentCode

The tournament code string. (required)

System.Nullable<System.Threading.CancellationToken> cancellationToken

A cancellation token that can be used to cancel this task.

Returns
Type Description
TournamentCode
| Improve this Doc View Source

GetTournamentCodeAsync(Region, String, Nullable<CancellationToken>)

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

Official API Reference: https://developer.riotgames.com/api-methods/#tournament-v4/GET_getTournamentCode

Declaration
public Task<TournamentCode> GetTournamentCodeAsync(Region region, string tournamentCode, CancellationToken? cancellationToken = default(CancellationToken? ))
Parameters
Type Name Description
Region region

Region to query.

System.String tournamentCode

The tournament code string. (required)

System.Nullable<System.Threading.CancellationToken> cancellationToken

A cancellation token that can be used to cancel this task.

Returns
Type Description
System.Threading.Tasks.Task<TournamentCode>
  • Improve this Doc
  • View Source
Back to top Generated by DocFX