Share via


ConversationMembers Constructors

Definition

Overloads

ConversationMembers()

Initializes a new instance of the ConversationMembers class.

ConversationMembers(String, IList<ChannelAccount>)

Initializes a new instance of the ConversationMembers class.

ConversationMembers()

Initializes a new instance of the ConversationMembers class.

public ConversationMembers ();
Public Sub New ()

Applies to

ConversationMembers(String, IList<ChannelAccount>)

Initializes a new instance of the ConversationMembers class.

public ConversationMembers (string id = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.ChannelAccount> members = default);
new Microsoft.Bot.Schema.ConversationMembers : string * System.Collections.Generic.IList<Microsoft.Bot.Schema.ChannelAccount> -> Microsoft.Bot.Schema.ConversationMembers
Public Sub New (Optional id As String = Nothing, Optional members As IList(Of ChannelAccount) = Nothing)

Parameters

id
String

Conversation ID.

members
IList<ChannelAccount>

List of members in this conversation.

Applies to