Skip to main content
Version: 2.x.x

Meeting Class Properties - Unity


MeetingID​

The MeetingID property represents the unique identifier of the meeting that the participant has currently joined.

Type​

  • string

Example​

Meeting meeting = Meeting.GetMeetingObject();
string currentMeetingId = meeting.MeetingID;
Debug.Log("Current Meeting ID: " + currentMeetingId);

MeetingState​

The MeetingState property returns the current connection state of the meeting.

Type​

  • MeetingState (Enum)

Possible Values​

  • MeetingState.NONE – No meeting operation has started.
  • MeetingState.CONNECTING – Currently attempting to join the meeting.
  • MeetingState.CONNECTED – Successfully joined the meeting.
  • MeetingState.RECONNECTING – Attempting to reconnect after a disruption.
  • MeetingState.DISCONNECTED – Disconnected from the meeting.

Example​

Meeting meeting = Meeting.GetMeetingObject();
MeetingState state = meeting.MeetingState;
Debug.Log("Current Meeting State: " + state);

Got a Question? Ask us on discord


Was this helpful?