SdpAnswerStatus Enum
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.
Status of the SdpAnswer.
public enum class SdpAnswerStatus
public enum SdpAnswerStatus
type SdpAnswerStatus =
Public Enum SdpAnswerStatus
- Inheritance
-
SdpAnswerStatus
Fields
Name | Value | Description |
---|---|---|
Provisional | 0 | Answer received is on the provisional response, MediaProvider may accept multiple Provisional answers for the forking cases. |
Final | 1 | Answer received is the final answer from remote endpoint. |
UnsupportedMediaCanRetry | 2 | UnsupportedMediaCanRetry indicates that 415 ("unacceptable media") response code is received, but Call will retry the sdp negotiation. |
UnsupportedMediaCannotRetry | 3 | UnsupportedMediaCannotRetry indicates that 415 ("unacceptable media") response code is received and sdp negotiation cannot be reattempted. |
RequestPending | 4 | RequestPending error would occur if remote endpoint returns 491, for offer/answer negotiation collision. |
NotAcceptable | 5 | Any error from server in offer answer negotiation, which is not mapped to UnSupportedMedia or RequestPending would be mapped to NotAcceptable. |
NotAcceptableLocally | 6 | If call cannot send out the offer received from MediaProvider, it would set the Answer status as NotAcceptableLocally. |
NotAcceptableDueToBandwidthPolicy | 7 | This error code would occur when the remote side rejected the call with 488 due to bandwidth policy. |
RemoteRejectedNegotiation | 8 | |
Failure | 9 |