IOfferAnswer.HandleOfferInReInvite(Object, OfferInReInviteEventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public:
void HandleOfferInReInvite(System::Object ^ sender, Microsoft::Rtc::Signaling::OfferInReInviteEventArgs ^ e);
public void HandleOfferInReInvite (object sender, Microsoft.Rtc.Signaling.OfferInReInviteEventArgs e);
abstract member HandleOfferInReInvite : obj * Microsoft.Rtc.Signaling.OfferInReInviteEventArgs -> unit
Public Sub HandleOfferInReInvite (sender As Object, e As OfferInReInviteEventArgs)
Parameters
- sender
- Object
The object instance that is making this call.
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.