IOfferAnswer.HandleOfferInInviteResponse 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 a media offer is received by the inviter in response to the original reinvite with a null offer.
public:
void HandleOfferInInviteResponse(System::Object ^ sender, Microsoft::Rtc::Signaling::OfferInInviteResponseEventArgs ^ e);
public void HandleOfferInInviteResponse (object sender, Microsoft.Rtc.Signaling.OfferInInviteResponseEventArgs e);
abstract member HandleOfferInInviteResponse : obj * Microsoft.Rtc.Signaling.OfferInInviteResponseEventArgs -> unit
Public Sub HandleOfferInInviteResponse (sender As Object, e As OfferInInviteResponseEventArgs)
Parameters
- sender
- Object
The object instance that is making this call.
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.