diff options
author | MDN <actions@users.noreply.github.com> | 2021-06-03 01:40:04 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2021-06-03 01:40:04 +0000 |
commit | d5f6dd6b7f6653facfb468516ef657a2d4d5180c (patch) | |
tree | e08e8f6f9d5394cd3edf4c4b54e961f4e4cc1e99 /files/ru/orphaned | |
parent | d671972ba9c48fa9367d6264b5d99151fc07235a (diff) | |
download | translated-content-d5f6dd6b7f6653facfb468516ef657a2d4d5180c.tar.gz translated-content-d5f6dd6b7f6653facfb468516ef657a2d4d5180c.tar.bz2 translated-content-d5f6dd6b7f6653facfb468516ef657a2d4d5180c.zip |
[CRON] sync translated content
Diffstat (limited to 'files/ru/orphaned')
-rw-r--r-- | files/ru/orphaned/web/api/rtcpeerconnection/getdefaulticeservers/index.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/files/ru/orphaned/web/api/rtcpeerconnection/getdefaulticeservers/index.html b/files/ru/orphaned/web/api/rtcpeerconnection/getdefaulticeservers/index.html new file mode 100644 index 0000000000..d02bdfae84 --- /dev/null +++ b/files/ru/orphaned/web/api/rtcpeerconnection/getdefaulticeservers/index.html @@ -0,0 +1,57 @@ +--- +title: RTCPeerConnection.getDefaultIceServers() +slug: orphaned/Web/API/RTCPeerConnection/getDefaultIceServers +translation_of: Web/API/RTCPeerConnection/getDefaultIceServers +original_slug: Web/API/RTCPeerConnection/getDefaultIceServers +--- +<p>{{APIRef("WebRTC")}}{{SeeCompatTable}}</p> + +<p>Метод <code><strong>getDefaultIceServers()</strong></code> интерфейса {{domxref("RTCPeerConnection")}} , возвращает массив объектов {{domxref("RTCIceServer")}}, который указывает, какие серверы ICE браузер будет использовать по умолчанию, если они не указаны в параметре {{domxref("RTCConfiguration")}} конструктора {{domxref("RTCPeerConnection")}} </p> + +<h2 id="Синтаксис">Синтаксис</h2> + +<pre class="syntaxbox notranslate"> var <em>defaultIceServers</em> = <em>RTCPeerConnection</em>.getDefaultIceServers();</pre> + +<h3 id="Возвращаемое_значение">Возвращаемое значение</h3> + +<p>Массив ICE серверов, определяемые как объекты класса {{domxref("RTCIceServer")}} , которые браузер будет использовать для соединения, если иное не определено в параметре - объекте конфигурации конструктора {{domxref("RTCPeerConnection")}}. Если в браузере нет значений по умолчанию, массив будет пуст. Значение свойства не может быть <code>null</code>.</p> + +<h2 id="Пример">Пример</h2> + +<pre class="brush: js notranslate">var pc = new RTCPeerConnection(); +var iceServers = pc.getDefaultIceServers(); + +if (iceServers.length === 0) { + // Решить проблему отсутствия серверов ICE по умолчанию, возможно, используя наши собственные настройки по умолчанию.</pre> + +<h2 id="Спецификации">Спецификации</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Спецификация</th> + <th scope="col">Статус</th> + <th scope="col">Комментарий</th> + </tr> + </thead> + <tbody> + <tr> + <td><a href="https://w3c.github.io/webrtc-extensions/#dom-rtcpeerconnection-getdefaulticeservers">WebRTC Extensions</a></td> + <td></td> + <td></td> + </tr> + </tbody> +</table> + +<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2> + + + +<p>{{Compat("api.RTCPeerConnection.getDefaultIceServers")}}</p> + +<h2 id="Смотрите_также">Смотрите также</h2> + +<ul> + <li><a href="/en-US/docs/Web/Guide/API/WebRTC">WebRTC</a></li> + <li>{{domxref("RTCConfiguration")}}</li> +</ul> |