remoteDescription property
RTCSessionDescription?
get
remoteDescription
The remoteDescription
read-only property of the RTCPeerConnection
interface returns a RTCSessionDescription describing the session (which
includes configuration and media information) for the remote end of the
connection.
If this hasn't been set yet, this is null
.
The returned value typically reflects a remote description which has been received over the signaling server (as either an offer or an answer) and then put into effect by your code calling RTCPeerConnection.setRemoteDescription in response.
Implementation
external RTCSessionDescription? get remoteDescription;