From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- .../rtcpeerconnection/connectionstate/index.html | 62 ++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 files/ru/web/api/rtcpeerconnection/connectionstate/index.html (limited to 'files/ru/web/api/rtcpeerconnection/connectionstate/index.html') diff --git a/files/ru/web/api/rtcpeerconnection/connectionstate/index.html b/files/ru/web/api/rtcpeerconnection/connectionstate/index.html new file mode 100644 index 0000000000..2b17b9b29e --- /dev/null +++ b/files/ru/web/api/rtcpeerconnection/connectionstate/index.html @@ -0,0 +1,62 @@ +--- +title: RTCPeerConnection.connectionState +slug: Web/API/RTCPeerConnection/connectionState +translation_of: Web/API/RTCPeerConnection/connectionState +--- +

{{APIRef("WebRTC")}}

+ +

Только для чтения свойство  connectionState интерфейса {{domxref("RTCPeerConnection")}} указывает на текущее состояние соединения, возвращая одно из строковых значений, определяемых в перечислении RTCPeerConnectionState.

+ +

Когда значение свойство изменяется, возникает событие   {{event("connectionstatechange")}} на объекте интерфейса {{domxref("RTCPeerConnection")}} .

+ +

Синтаксис

+ +
var connectionState = RTCPeerConnection.connectionState;
+ +

Значение

+ +

Текущий статус соединения представлен одним из значений перечисления  RTCPeerConnectionState.

+ +

{{page("/en-US/docs/Web/API/RTCPeerConnection", "RTCPeerConnectionState enum", 0, 1)}}

+ +

Пример

+ +
var pc = new RTCPeerConnection(configuration);
+
+/* ... */
+
+var connectionState = pc.connectionState;
+ +

Спецификации

+ + + + + + + + + + + + + + + + +
СпецификацияСтатусКомментарий
{{ SpecName('WebRTC 1.0', '#dom-peerconnection-connection-state', 'RTCPeerConnection.connectionState') }}{{ Spec2('WebRTC 1.0') }}Initial specification.
+ +

Совместимость с браузерами

+ + + +

{{Compat("api.RTCPeerConnection.connectionState")}}

+ +

Смотри так же

+ + -- cgit v1.2.3-54-g00ecf