다음을 통해 공유


ChannelServiceHandlerBase.OnGetConversationMemberAsync 메서드

정의

기술용 GetConversationMember() API.

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)

매개 변수

claimsIdentity
ClaimsIdentity

봇에 대한 claimsIdentity에는 AudienceClaim, AppIdClaim 및 ServiceUrlClaim이 있어야 합니다.

userId
String

User ID.

conversationId
String

대화 ID입니다.

cancellationToken
CancellationToken

취소 토큰입니다.

반환

응답에 대한 작업입니다.

설명

이 메서드를 재정의하여 단일 대화 멤버의 계정을 가져옵니다.

이 REST API는 ConversationId 및 UserId를 사용하고 대화의 멤버를 나타내는 ChannelAccount 개체를 반환합니다.

적용 대상