Raised when one or more participant endpoints join or leave the focus.

Namespace:  Microsoft.Rtc.Collaboration
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public Event 

ParticipantEndpointAttendanceChanged 
As 
EventHandler(
Of 

ParticipantEndpointAttendanceChangedEventArgs(
Of 

ConferenceParticipantEndpointProperties))
C#
public event 
EventHandler<

ParticipantEndpointAttendanceChangedEventArgs<

ConferenceParticipantEndpointProperties>> 

ParticipantEndpointAttendanceChanged
Visual C++
public:
 
event 
EventHandler<

ParticipantEndpointAttendanceChangedEventArgs<

ConferenceParticipantEndpointProperties^>^>^ 

ParticipantEndpointAttendanceChanged {
	
void 
add (
EventHandler<

ParticipantEndpointAttendanceChangedEventArgs<

ConferenceParticipantEndpointProperties^>^>^ 
value);
	
void 
remove (
EventHandler<

ParticipantEndpointAttendanceChangedEventArgs<

ConferenceParticipantEndpointProperties^>^>^ 
value);
}
JavaScript
function add_

participantEndpointAttendanceChanged(
value);
function remove_

participantEndpointAttendanceChanged(
value);

Remarks

A single participant can have more than one endpoint on the focus. A snapshot of the joining or leaving endpoint properties is provided when the event is raised. However, it is possible for an endpoint to change its properties while the event is being raised. The provided snapshot, on the other hand, will not change.

See Also