ChannelServiceHandlerBase.OnGetConversationMembersAsync Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
GetConversationMembers() API for Skill.
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))
Parametry
- claimsIdentity
- ClaimsIdentity
claimsIdentity pro robota by měla mít AudienceClaim, AppIdClaim a ServiceUrlClaim.
- conversationId
- String
ID konverzace.
- cancellationToken
- CancellationToken
Token zrušení.
Návraty
úkol pro odpověď.
Poznámky
Přepsat tuto metodu výčet členů konverzace.
Toto rozhraní REST API přebírá hodnotu ConversationId a vrací pole objektů ChannelAccount představujících členy konverzace.