Share via


ChatThreadClient.AddParticipantsAsync Method

Definition

Adds participants to a thread asynchronously. If participants already exist, no change occurs.

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.AddChatParticipantsResult>> AddParticipantsAsync (System.Collections.Generic.IEnumerable<Azure.Communication.Chat.ChatParticipant> participants, System.Threading.CancellationToken cancellationToken = default);
abstract member AddParticipantsAsync : seq<Azure.Communication.Chat.ChatParticipant> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.AddChatParticipantsResult>>
override this.AddParticipantsAsync : seq<Azure.Communication.Chat.ChatParticipant> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.AddChatParticipantsResult>>
Public Overridable Function AddParticipantsAsync (participants As IEnumerable(Of ChatParticipant), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of AddChatParticipantsResult))

Parameters

participants
IEnumerable<ChatParticipant>

Participants to add to a chat thread.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

The server returned an error. See Message for details returned from the server.

Applies to