LobbyParticipantAttendanceChangedEventArgs.Removed Property
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.
Gets the collection of participants who were admitted into the conference or who left the lobby.
public:
property System::Collections::ObjectModel::Collection<System::Collections::Generic::KeyValuePair<Microsoft::Rtc::Collaboration::ConversationParticipant ^, Microsoft::Rtc::Collaboration::LobbyRemovalReason>> ^ Removed { System::Collections::ObjectModel::Collection<System::Collections::Generic::KeyValuePair<Microsoft::Rtc::Collaboration::ConversationParticipant ^, Microsoft::Rtc::Collaboration::LobbyRemovalReason>> ^ get(); };
public System.Collections.ObjectModel.Collection<System.Collections.Generic.KeyValuePair<Microsoft.Rtc.Collaboration.ConversationParticipant,Microsoft.Rtc.Collaboration.LobbyRemovalReason>> Removed { get; }
member this.Removed : System.Collections.ObjectModel.Collection<System.Collections.Generic.KeyValuePair<Microsoft.Rtc.Collaboration.ConversationParticipant, Microsoft.Rtc.Collaboration.LobbyRemovalReason>>
Public ReadOnly Property Removed As Collection(Of KeyValuePair(Of ConversationParticipant, LobbyRemovalReason))
Property Value
Remarks
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.