Share via


MeetingParticipantInfo Constructors

Definition

Overloads

MeetingParticipantInfo()

Initializes a new instance of the MeetingParticipantInfo class.

MeetingParticipantInfo(String, Nullable<Boolean>)

Initializes a new instance of the MeetingParticipantInfo class.

MeetingParticipantInfo()

Initializes a new instance of the MeetingParticipantInfo class.

public MeetingParticipantInfo ();
Public Sub New ()

Applies to

MeetingParticipantInfo(String, Nullable<Boolean>)

Initializes a new instance of the MeetingParticipantInfo class.

public MeetingParticipantInfo (string role = default, bool? inMeeting = default);
new Microsoft.Bot.Schema.Teams.MeetingParticipantInfo : string * Nullable<bool> -> Microsoft.Bot.Schema.Teams.MeetingParticipantInfo
Public Sub New (Optional role As String = Nothing, Optional inMeeting As Nullable(Of Boolean) = Nothing)

Parameters

role
String

Role of the participant in the current meeting.

inMeeting
Nullable<Boolean>

True, if the participant is in the meeting.

Applies to