Raised when one or more properties of a participant endpoint change.

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

Syntax

Visual Basic (Declaration)
Public Event 

ParticipantEndpointPropertiesChanged 
As 
EventHandler(
Of 

ParticipantEndpointPropertiesChangedEventArgs(
Of 

ConferenceParticipantEndpointProperties))
C#
public event 
EventHandler<

ParticipantEndpointPropertiesChangedEventArgs<

ConferenceParticipantEndpointProperties>> 

ParticipantEndpointPropertiesChanged
Visual C++
public:
 
event 
EventHandler<

ParticipantEndpointPropertiesChangedEventArgs<

ConferenceParticipantEndpointProperties^>^>^ 

ParticipantEndpointPropertiesChanged {
	
void 
add (
EventHandler<

ParticipantEndpointPropertiesChangedEventArgs<

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

ParticipantEndpointPropertiesChangedEventArgs<

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

participantEndpointPropertiesChanged(
value);
function remove_

participantEndpointPropertiesChanged(
value);

Remarks

A snapshot of the changed 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