The method that is called when a media offer is received by the inviter in response to the original reinvite with a null offer.

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

Syntax

Visual Basic (Declaration)
Private 
Sub 
HandleOfferInInviteResponse ( _
	
sender 
As 
Object, _
	
e 
As 

OfferInInviteResponseEventArgs _
) 
Implements 

IOfferAnswer.

HandleOfferInInviteResponse
C#
void 

IOfferAnswer.

HandleOfferInInviteResponse(
	
Object 
sender,
	

OfferInInviteResponseEventArgs 
e
)
Visual C++
private:
virtual 
void 
HandleOfferInInviteResponse(
	
Object^ 
sender, 
	

OfferInInviteResponseEventArgs^ 
e
) 
sealed = 

IOfferAnswer::

HandleOfferInInviteResponse
JavaScript
JavaScript does not support explicit
interface implementations.

Parameters

sender
Type: Object
The object instance that is making this call.
e
Type: Microsoft.Rtc.Signaling . . :: . OfferInInviteResponseEventArgs
The event argument containing information about the offer.

Implements

IOfferAnswer . . :: . HandleOfferInInviteResponse(Object, OfferInInviteResponseEventArgs)

Remarks

The application can cache this event argument and start preparing the answer. When it is ready, it can call the "Accept" method in the event argument to let the platform call the GetAnswer method.

See Also