Conversation.LobbyParticipantAttendanceChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raised when one or more participants join or leave the conference lobby.
public:
event EventHandler<Microsoft::Rtc::Collaboration::LobbyParticipantAttendanceChangedEventArgs ^> ^ LobbyParticipantAttendanceChanged;
public event EventHandler<Microsoft.Rtc.Collaboration.LobbyParticipantAttendanceChangedEventArgs> LobbyParticipantAttendanceChanged;
member this.LobbyParticipantAttendanceChanged : EventHandler<Microsoft.Rtc.Collaboration.LobbyParticipantAttendanceChangedEventArgs>
Public Custom Event LobbyParticipantAttendanceChanged As EventHandler(Of LobbyParticipantAttendanceChangedEventArgs)
Event Type
Remarks
This event is only raised in conferencing scenarios.
For lobby participants who are admitted to the conference, a LobbyParticipantAttendanceChanged will be raised indicating that the participant is removed from the lobby participant list with the Admitted as the removal reason. Then another RemoteParticipantAttendanceChanged will be raised for the same participant indicating that this participant has been added to the conference.
As for participants who leave the lobby, a LobbyParticipantAttendanceChanged will be raised indicating that the participant is removed from the lobby participant list with the LeftLobby as the removal reason. For this case, the platform does not raise another RemoteParticipantAttendanceChanged event.
A conference leader can admit or deny lobby participants access into the conference by calling BeginAdmitLobbyParticipants(IEnumerable<ConversationParticipant>, AsyncCallback, Object) and BeginDenyLobbyParticipants(IEnumerable<ConversationParticipant>, AsyncCallback, Object)