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.Signaling
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

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

OfferInInviteResponseEventArgs _
)
C#
void 
HandleOfferInInviteResponse(
	
Object 
sender,
	

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

OfferInInviteResponseEventArgs^ 
e
)
JavaScript
function 
handleOfferInInviteResponse(
sender, 
e);

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.

Remarks

The application can cache this event argument and start preparing the answer. When it is ready, it can call the "ReadyToAnswer" method. This will result in GetAnswer method getting called.

See Also