Edit

Share via


TournamentService.GetTeamDetailsAsync(String, 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.TeamInfo> GetTeamDetailsAsync (string organizerId, string tournamentId, string teamId);
abstract member GetTeamDetailsAsync : string * string * string -> Windows.Foundation.IAsyncOperation<Microsoft.Xbox.Services.Tournaments.TeamInfo>
override this.GetTeamDetailsAsync : string * string * string -> Windows.Foundation.IAsyncOperation<Microsoft.Xbox.Services.Tournaments.TeamInfo>
Public Function GetTeamDetailsAsync (organizerId As String, tournamentId As String, teamId As String) As IAsyncOperation(Of TeamInfo)

Parameters

organizerId
String

The ID of the tournament organizer. This is case sensitive.

tournamentId
String

The ID of the tournament.

teamId
String

The ID of the team.

Returns

Windows.Foundation.IAsyncOperation<TeamInfo>

A specific tournament if they exist.

Implements

Microsoft.Xbox.Services.Tournaments.__ITournamentServicePublicNonVirtuals.GetTeamDetailsAsync(System.String,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}/teams/{teamId}

Applies to