ConferenceSession.IOfferAnswer.HandleOfferInReInvite 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.
virtual void Microsoft.Rtc.Signaling.IOfferAnswer.HandleOfferInReInvite(System::Object ^ sender, Microsoft::Rtc::Signaling::OfferInReInviteEventArgs ^ e) = Microsoft::Rtc::Signaling::IOfferAnswer::HandleOfferInReInvite;
void IOfferAnswer.HandleOfferInReInvite (object sender, Microsoft.Rtc.Signaling.OfferInReInviteEventArgs e);
Sub HandleOfferInReInvite (sender As Object, e As OfferInReInviteEventArgs) Implements IOfferAnswer.HandleOfferInReInvite
Parameters
- sender
- Object
The object instance that is making this call.
The event argument containing information about the offer. The offer can be null.
Implements
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 to let the platform call the GetOffer or GetAnswer method to fetch offer or answer whichever is appropriate. If the application does not like the offer, it can also decline.