W3cubDocs

/Web APIs

RTCSessionDescription: type property

The property RTCSessionDescription.type is a read-only string value which describes the description's type.

Syntax

js

const value = sessionDescription.type
sessionDescription.type = value

Value

The possible values are:

"answer"

The SDP contained in the sdp property is the definitive choice in the exchange. In other words, this session description describes the agreed-upon configuration, and is being sent to finalize negotiation.

"offer"

The session description object describes the initial proposal in an offer/answer exchange. The session negotiation process begins with an offer being sent from the caller to the callee.

"pranswer"

The session description object describes a provisional answer; that is, a response to a previous offer that is not the final answer. It is usually employed by legacy hardware.

"rollback"

This special type with an empty session description is used to roll back to the previous stable state.

Example

js

// The remote description has been set previously on pc, a RTCPeerConnection

alert(pc.remoteDescription.type);

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
type 23 15 22 No 15 11 4.4 25 24 14 11 1.5

See also

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/type