Show / Hide Table of Contents

Class JoinCallParameters

Parameters required for joining a call.

Inheritance
System.Object
JoinCallParameters
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Microsoft.Bot.Builder.Enterprise.Core
Assembly: Microsoft.Bot.Builder.Enterprise.dll
Syntax
public class JoinCallParameters

Constructors

View Source

JoinCallParameters(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 Source

DisplayName

Gets or sets the custom display name of the bot

Declaration
public string DisplayName { get; set; }
Property Value
Type Description
System.String
View Source

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>
View Source

JoinAsId

Gets or sets the custom ID of the bot

Declaration
public string JoinAsId { get; set; }
Property Value
Type Description
System.String
View Source

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
View Source

MessageId

Gets the id of the thread message, for multiparty calls.

Declaration
public string MessageId { get; }
Property Value
Type Description
System.String
View Source

OrganizerId

Gets the Id of the organizer of the meeting to be joined

Declaration
public string OrganizerId { get; }
Property Value
Type Description
System.String
View Source

ReplyChainMessageId

Gets the Reply chain message id of the meeting to be joined

Declaration
public string ReplyChainMessageId { get; }
Property Value
Type Description
System.String
View Source

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
View Source

ThreadId

Gets the id of the thread, for multiparty calls.

Declaration
public string ThreadId { get; }
Property Value
Type Description
System.String
  • View Source
Back to top Copyright © 2015-2017 Microsoft
Generated by DocFX