Raised when the remote participant sends a response to the conference invitation.

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

Syntax

Visual Basic (Declaration)
Public Event 
InviteRemoteParticipantUpdate 
As 
EventHandler(
Of 

InviteParticipantUpdateEventArgs)
C#
public event 
EventHandler<

InviteParticipantUpdateEventArgs> 
InviteRemoteParticipantUpdate
Visual C++
public:
 
event 
EventHandler<

InviteParticipantUpdateEventArgs^>^ 
InviteRemoteParticipantUpdate {
	
void 
add (
EventHandler<

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

InviteParticipantUpdateEventArgs^>^ 
value);
}
JavaScript
function add_
inviteRemoteParticipantUpdate(
value);
function remove_
inviteRemoteParticipantUpdate(
value);

Remarks

Multiple remote participants can be invited to a conference. This event will be raised each time a response to the conference invitation is received from one of the invited remote participants.

See Also