ChannelServiceHandlerBase.OnGetConversationMemberAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
API GetConversationMember() pour Skill.
protected virtual System.Threading.Tasks.Task<Microsoft.Bot.Schema.ChannelAccount> OnGetConversationMemberAsync (System.Security.Claims.ClaimsIdentity claimsIdentity, string userId, string conversationId, System.Threading.CancellationToken cancellationToken = default);
abstract member OnGetConversationMemberAsync : System.Security.Claims.ClaimsIdentity * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Schema.ChannelAccount>
override this.OnGetConversationMemberAsync : System.Security.Claims.ClaimsIdentity * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Schema.ChannelAccount>
Protected Overridable Function OnGetConversationMemberAsync (claimsIdentity As ClaimsIdentity, userId As String, conversationId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ChannelAccount)
Paramètres
- claimsIdentity
- ClaimsIdentity
claimsIdentity pour le bot, doit avoir AudienceClaim, AppIdClaim et ServiceUrlClaim.
- userId
- String
ID d'utilisateur.
- conversationId
- String
ID de conversation.
- cancellationToken
- CancellationToken
Jeton d'annulation.
Retours
tâche pour une réponse.
Remarques
Remplacez cette méthode pour obtenir le compte d’un seul membre de conversation.
Cette API REST prend un ConversationId et un UserId et retourne les objets ChannelAccount représentant le membre de la conversation.