Raised when the remote has accepted the invite. Typically, this happens when a successful response is received. This event is optional for an application. Applications that want to send headers in the acknowledgement can register for this event.

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

Syntax

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

InvitationAcceptedEventArgs)
C#
public event 
EventHandler<

InvitationAcceptedEventArgs> 
InvitationAccepted
Visual C++
public:
 
event 
EventHandler<

InvitationAcceptedEventArgs^>^ 
InvitationAccepted {
	
void 
add (
EventHandler<

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

InvitationAcceptedEventArgs^>^ 
value);
}
JavaScript
function add_
invitationAccepted(
value);
function remove_
invitationAccepted(
value);

See Also