Represents the class used when InvitationAccepted event is raised. This gives access to the headers in the response in addition to informing the appplication that the invitation has been accepted. The headers exposed in this event are the same as the one returned when the application calls the EndEnter methods to fetch headers. If the application registers for this event, it is responsible for sending the acknowledgement in a timely manner. If the application does not send Ack, the platform will send it when the application returns from this event.

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

Syntax

Visual Basic (Declaration)
Public 
Class 
InvitationAcceptedEventArgs _
	
Inherits 

SipResponseReceivedEventArgs
C#
public 
class 
InvitationAcceptedEventArgs : 

SipResponseReceivedEventArgs
Visual C++
public 
ref class 
InvitationAcceptedEventArgs : 
public 

SipResponseReceivedEventArgs
JavaScript

Microsoft.Rtc.Signaling.InvitationAcceptedEventArgs = 
function();

Type.createClass(
		'Microsoft.Rtc.Signaling.InvitationAcceptedEventArgs',
	

Microsoft.Rtc.Signaling.SipResponseReceivedEventArgs);

Inheritance Hierarchy

Object
   EventArgs
     Microsoft.Rtc.Signaling . . :: . SipResponseReceivedEventArgs
       Microsoft.Rtc.Signaling . . :: . InvitationAcceptedEventArgs

See Also