Share via


MeetingInfo Constructors

Definition

Overloads

MeetingInfo()

Initializes a new instance of the MeetingInfo class.

MeetingInfo(MeetingDetails, ConversationAccount, TeamsChannelAccount)

Initializes a new instance of the MeetingInfo class.

MeetingInfo()

Initializes a new instance of the MeetingInfo class.

public MeetingInfo ();
Public Sub New ()

Applies to

MeetingInfo(MeetingDetails, ConversationAccount, TeamsChannelAccount)

Initializes a new instance of the MeetingInfo class.

public MeetingInfo (Microsoft.Bot.Schema.Teams.MeetingDetails details, Microsoft.Bot.Schema.ConversationAccount conversation = default, Microsoft.Bot.Schema.Teams.TeamsChannelAccount organizer = default);
new Microsoft.Bot.Schema.Teams.MeetingInfo : Microsoft.Bot.Schema.Teams.MeetingDetails * Microsoft.Bot.Schema.ConversationAccount * Microsoft.Bot.Schema.Teams.TeamsChannelAccount -> Microsoft.Bot.Schema.Teams.MeetingInfo
Public Sub New (details As MeetingDetails, Optional conversation As ConversationAccount = Nothing, Optional organizer As TeamsChannelAccount = Nothing)

Parameters

details
MeetingDetails

The meeting's detailed information.

conversation
ConversationAccount

Conversation Account for the meeting.

organizer
TeamsChannelAccount

Information specific to this organizer of the specific meeting.

Applies to