Edit

Share via


TournamentService.GetTournamentDetailsAsync(String, String) Method

Definition

Returns a specific tournament object. The tournament ID and the organizer ID together uniquely identify a tournament.

public Windows.Foundation.IAsyncOperation<Microsoft.Xbox.Services.Tournaments.Tournament> GetTournamentDetailsAsync (string organizerId, string tournamentId);
abstract member GetTournamentDetailsAsync : string * string -> Windows.Foundation.IAsyncOperation<Microsoft.Xbox.Services.Tournaments.Tournament>
override this.GetTournamentDetailsAsync : string * string -> Windows.Foundation.IAsyncOperation<Microsoft.Xbox.Services.Tournaments.Tournament>
Public Function GetTournamentDetailsAsync (organizerId As String, tournamentId As String) As IAsyncOperation(Of Tournament)

Parameters

organizerId
String

The ID of the tournament organizer.

tournamentId
String

The ID of the tournament.

Returns

Windows.Foundation.IAsyncOperation<Tournament>

The specific tournament if they exist.

Implements

Microsoft.Xbox.Services.Tournaments.__ITournamentServicePublicNonVirtuals.GetTournamentDetailsAsync(System.String,System.String)

Remarks

Returns a concurrency::task{T} object that represents the state of the asynchronous operation. This method calls GET /tournaments/{organizer}/{id}.

Applies to