Class JoinCallParameters
Parameters required for joining a call.
Inheritance
Inherited Members
Namespace: Microsoft.Bot.Builder.Enterprise.Core
Assembly: Microsoft.Bot.Builder.Enterprise.dll
Syntax
public class JoinCallParameters
Constructors
View SourceJoinCallParameters(String, String, String, String, String)
Initializes a new instance of the JoinCallParameters class. Join the bot with this ID.
Declaration
public JoinCallParameters(string threadId, string messageId, string tenantId, string organizerId, string replyChainMessageId = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | threadId | ThreadId for the meeting to be joined |
System.String | messageId | messageId for the meeting to be joined |
System.String | tenantId | tenantId for the meeting to be joined |
System.String | organizerId | organizerId for the meeting to be joined |
System.String | replyChainMessageId | reply chain message id for the meeting to be joined |
Properties
View SourceDisplayName
Gets or sets the custom display name of the bot
Declaration
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Hidden
Gets or sets the flag that makes the conversation Join as a hidden entity
Declaration
public bool ? Hidden { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
JoinAsId
Gets or sets the custom ID of the bot
Declaration
public string JoinAsId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
JoinToken
Gets the conversation join token. This value defines the target group conversation to be joined.
Declaration
public string JoinToken { get; }
Property Value
Type | Description |
---|---|
System.String |
MessageId
Gets the id of the thread message, for multiparty calls.
Declaration
public string MessageId { get; }
Property Value
Type | Description |
---|---|
System.String |
OrganizerId
Gets the Id of the organizer of the meeting to be joined
Declaration
public string OrganizerId { get; }
Property Value
Type | Description |
---|---|
System.String |
ReplyChainMessageId
Gets the Reply chain message id of the meeting to be joined
Declaration
public string ReplyChainMessageId { get; }
Property Value
Type | Description |
---|---|
System.String |
TenantId
Gets the TenantId passed in to identify a specific meeting to be joined.
Declaration
public string TenantId { get; }
Property Value
Type | Description |
---|---|
System.String |
ThreadId
Gets the id of the thread, for multiparty calls.
Declaration
public string ThreadId { get; }
Property Value
Type | Description |
---|---|
System.String |