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.Signaling
Assembly: Microsoft.Rtc.Collaboration (in Microsoft.Rtc.Collaboration.dll)
Syntax
'Declaration
Sub HandleOfferInInviteResponse ( _
sender As Object, _
e As OfferInInviteResponseEventArgs _
)
'Usage
Dim instance As IOfferAnswer
Dim sender As Object
Dim e As OfferInInviteResponseEventArgs
instance.HandleOfferInInviteResponse(sender, _
e)
void 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.
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.