Status of the SdpAnswer.

Namespace:  Microsoft.Rtc.Collaboration
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Enumeration 
SdpAnswerStatus
C#
public 
enum 
SdpAnswerStatus
Visual C++
public 
enum class 
SdpAnswerStatus
JavaScript

Microsoft.Rtc.Collaboration.SdpAnswerStatus = 
function();

Microsoft.Rtc.Collaboration.SdpAnswerStatus.createEnum('

Microsoft.Rtc.Collaboration.SdpAnswerStatus', false);

Members

Member name Description
Provisional
Answer received is on the provisional response, MediaProvider may accept multiple Provisional answers for the forking cases.
Final
Answer received is the final answer from remote endpoint.
UnsupportedMediaCanRetry
UnsupportedMediaCanRetry indicates that 415 ("unacceptable media") response code is received, but Call will retry the sdp negotiation.
UnsupportedMediaCannotRetry
UnsupportedMediaCannotRetry indicates that 415 ("unacceptable media") response code is received and sdp negotiation cannot be reattempted.
RequestPending
RequestPending error would occur if remote endpoint returns 491, for offer/answer negotiation collision.
NotAcceptable
Any error from server in offer answer negotiation, which is not mapped to UnSupportedMedia or RequestPending would be mapped to NotAcceptable.
NotAcceptableLocally
If call can not send out the offer received from MediaProvider, it would set the Answer status as NotAcceptableLocally.

See Also