RTCPeerConnection.connectionState
io error: No such file or directory (os error 2) (/home/runner/work/yari/yari/mdn/translated-content/files/pt-br/web/api/rtcpeerconnection/index.md)
A propriedade connectionState
do tipo somente leitura da interface RTCPeerConnection
indica o estado atual da conexão em par, devolvendo um valor em string específicado por um enum RTCPeerConnection
.
Quando o valor da propriedade muda, o evento unsupported templ: event é enviado para a intância RTCPeerConnection
.
Syntax
var connectionState = RTCPeerConnection.connectionState;
Value
O estado atual da conexão, como um valor do enum RTCPeerConnectionState
.
Example
js
var pc = new RTCPeerConnection(configuration);
/* ... */
var connectionState = pc.connectionState;
Especificações
Specification |
---|
WebRTC: Real-Time Communication in Browsers # dom-peerconnection-connection-state |
Compatibilidade com navegadores
BCD tables only load in the browser
See also
- Lifetime of a WebRTC session
RTCPeerConnection
unsupported templ: event- WebRTC