ConferenceSession.IOfferAnswer.HandleOfferInInviteResponse Method
The method that is called when a media offer is received by the inviter in response to the original reinvite with a null offer.
Namespace: Microsoft.Rtc.Collaboration
Assembly: Microsoft.Rtc.Collaboration (in Microsoft.Rtc.Collaboration.dll)
Syntax
'Declaration
Private Sub HandleOfferInInviteResponse ( _
sender As Object, _
e As OfferInInviteResponseEventArgs _
) Implements IOfferAnswer.HandleOfferInInviteResponse
'Usage
Dim instance As ConferenceSession
Dim sender As Object
Dim e As OfferInInviteResponseEventArgs
CType(instance, IOfferAnswer).HandleOfferInInviteResponse(sender, _
e)
void IOfferAnswer.HandleOfferInInviteResponse(
Object sender,
OfferInInviteResponseEventArgs e
)
Parameters
- sender
Type: System.Object
The object instance that is making this call.
- e
Type: Microsoft.Rtc.Signaling.OfferInInviteResponseEventArgs
The event argument containing information about the offer.
Implements
IOfferAnswer.HandleOfferInInviteResponse(Object, OfferInInviteResponseEventArgs)
Remarks
The application can cache this event argument and start preparing the answer. When it is ready, it can call the "Accept" method in the event argument to let the platform call the GetAnswer method.