Share via


TeamsOperationsExtensions.FetchParticipantAsync Method

Definition

Fetches participant details related to a Teams meeting.

public static System.Threading.Tasks.Task<Microsoft.Bot.Schema.Teams.TeamsMeetingParticipant> FetchParticipantAsync (this Microsoft.Bot.Connector.Teams.ITeamsOperations operations, string meetingId, string participantId, string tenantId, System.Threading.CancellationToken cancellationToken = default);
static member FetchParticipantAsync : Microsoft.Bot.Connector.Teams.ITeamsOperations * string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Schema.Teams.TeamsMeetingParticipant>
<Extension()>
Public Function FetchParticipantAsync (operations As ITeamsOperations, meetingId As String, participantId As String, tenantId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of TeamsMeetingParticipant)

Parameters

operations
ITeamsOperations

The operations group for this extension method.

meetingId
String

Team meeting Id.

participantId
String

Team meeting participant Id.

tenantId
String

Team meeting tenant Id.

cancellationToken
CancellationToken

The cancellation token.

Returns

The participant details related to a Teams meeting.

Applies to