ChannelServiceHandlerBase.HandleGetConversationMembersAsync Method

Definition

Enumerates the members of a conversation.

public System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Bot.Schema.ChannelAccount>> HandleGetConversationMembersAsync (string authHeader, string conversationId, System.Threading.CancellationToken cancellationToken = default);
member this.HandleGetConversationMembersAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Bot.Schema.ChannelAccount>>
Public Function HandleGetConversationMembersAsync (authHeader As String, conversationId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IList(Of ChannelAccount))

Parameters

authHeader
String

The authentication header.

conversationId
String

The conversation Id.

cancellationToken
CancellationToken

A cancellation token that can be used by other objects or threads to receive notice of cancellation.

Returns

A Task<TResult> representing the result of the asynchronous operation.

Applies to