The method that is called when media renegotiation (ReInvite) is received. This happens when the remote sends another INVITE request inside an existing INVITE dialog to renegotiate media description.

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

Syntax

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

OfferInReInviteEventArgs _
)
C#
void 
HandleOfferInReInvite(
	
Object 
sender,
	

OfferInReInviteEventArgs 
e
)
Visual C++
void 
HandleOfferInReInvite(
	
Object^ 
sender, 
	

OfferInReInviteEventArgs^ 
e
)
JavaScript
function 
handleOfferInReInvite(
sender, 
e);

Parameters

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

Remarks

The application can cache this event argument and start preparing the answer or offer (if the original offer was empty). When it is ready, it can all "Accept" method in the event argument. This will result in GetOffer or GetAnswer method call to fetch offer or answer whichever is appropriate. If the application does not like the offer, it can also decline.

See Also