Aracılığıyla paylaş


ChannelServiceHandlerBase.OnGetConversationMembersAsync Yöntem

Tanım

Beceri için GetConversationMembers() API'sini seçin.

protected virtual System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Bot.Schema.ChannelAccount>> OnGetConversationMembersAsync (System.Security.Claims.ClaimsIdentity claimsIdentity, string conversationId, System.Threading.CancellationToken cancellationToken = default);
abstract member OnGetConversationMembersAsync : System.Security.Claims.ClaimsIdentity * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Bot.Schema.ChannelAccount>>
override this.OnGetConversationMembersAsync : System.Security.Claims.ClaimsIdentity * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Bot.Schema.ChannelAccount>>
Protected Overridable Function OnGetConversationMembersAsync (claimsIdentity As ClaimsIdentity, conversationId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IList(Of ChannelAccount))

Parametreler

claimsIdentity
ClaimsIdentity

bot için claimsIdentity, AudienceClaim, AppIdClaim ve ServiceUrlClaim olmalıdır.

conversationId
String

Konuşma Kimliği.

cancellationToken
CancellationToken

İptal belirteci.

Döndürülenler

bir yanıt için görev.

Açıklamalar

Bir konuşmanın üyelerini listelemek için bu yöntemi geçersiz kılın.

Bu REST API bir ConversationId alır ve konuşmanın üyelerini temsil eden bir ChannelAccount nesneleri dizisi döndürür.

Şunlara uygulanır