다음을 통해 공유


ConversationAccount 생성자

정의

오버로드

ConversationAccount()

ConversationAccount 클래스의 새 인스턴스를 초기화합니다.

ConversationAccount(Nullable<Boolean>, String, String, String, String, String, String)

ConversationAccount 클래스의 새 인스턴스를 초기화합니다.

ConversationAccount()

ConversationAccount 클래스의 새 인스턴스를 초기화합니다.

public ConversationAccount ();
Public Sub New ()

적용 대상

ConversationAccount(Nullable<Boolean>, String, String, String, String, String, String)

ConversationAccount 클래스의 새 인스턴스를 초기화합니다.

public ConversationAccount (bool? isGroup = default, string conversationType = default, string id = default, string name = default, string aadObjectId = default, string role = default, string tenantId = default);
new Microsoft.Bot.Schema.ConversationAccount : Nullable<bool> * string * string * string * string * string * string -> Microsoft.Bot.Schema.ConversationAccount
Public Sub New (Optional isGroup As Nullable(Of Boolean) = Nothing, Optional conversationType As String = Nothing, Optional id As String = Nothing, Optional name As String = Nothing, Optional aadObjectId As String = Nothing, Optional role As String = Nothing, Optional tenantId As String = Nothing)

매개 변수

isGroup
Nullable<Boolean>

활동이 생성되었을 때 대화에 두 명 이상의 참가자가 포함되어 있는지 여부를 나타냅니다.

conversationType
String

대화 유형을 구분하는 채널의 대화 형식을 나타냅니다.

id
String

이 채널의 사용자 또는 봇에 대한 채널 ID입니다(예: joe@smith.com, 또는 @joesmith 123456).

name
String

친숙한 이름을 표시합니다.

aadObjectId
String

AAD(Azure Active Directory) 내에서 이 계정의 개체 ID입니다.

role
String

계정 뒤에 있는 엔터티의 역할(예: 사용자, 봇 등). 가능한 값은 'user', 'bot'입니다.

tenantId
String

이 대화의 테넌트 ID입니다.

적용 대상