Edit

Share via


IOfferAnswer.HandleOfferInInviteResponse Method

Definition

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.

e
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.

Applies to