diff options
Diffstat (limited to 'files/ja/web/api/rtcconfiguration')
-rw-r--r-- | files/ja/web/api/rtcconfiguration/index.html | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/files/ja/web/api/rtcconfiguration/index.html b/files/ja/web/api/rtcconfiguration/index.html deleted file mode 100644 index 2e26eaceef..0000000000 --- a/files/ja/web/api/rtcconfiguration/index.html +++ /dev/null @@ -1,64 +0,0 @@ ---- -title: RTCConfiguration -slug: Web/API/RTCConfiguration -translation_of: Web/API/RTCConfiguration ---- -<p>{{APIRef("WebRTC")}}<span class="seoSummary"><code>RTCConfigurationは、</code>{{domxref("RTCPeerConnection")}} オブジェクトを介して ice server設定を初期化するためのものです 。 </span></p> - -<h2 id="例">例</h2> - -<pre class="brush: js">var configuration = { iceServers: [{ url: "stun:stun.services.mozilla.com", - username: "louis@mozilla.com", - credential: "webrtcdemo" }] -} -var pc = new RTCPeerConnection(configuration);</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><code>iceServers</code></td> - <td>RTCIceServer[]</td> - <td>ice server オブジェクトの配列</td> - </tr> - </tbody> -</table> - -<h2 id="RTCIceServer_プロパティ">RTCIceServer プロパティ</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">名前</th> - <th scope="col">型</th> - <th scope="col">説明</th> - </tr> - </thead> - <tbody> - <tr> - <td><code>url</code></td> - <td>{{domxref("DOMString")}}</td> - <td>使用するTURNまたはSTUNサーバーのURL</td> - </tr> - <tr> - <td><code>username</code></td> - <td>{{domxref("DOMString")}}</td> - <td>アカウントのユーザ名 (任意)</td> - </tr> - <tr> - <td><code>credential</code></td> - <td>{{domxref("DOMString")}}</td> - <td>ユーザ名に関連付けられたパスワード (任意)</td> - </tr> - </tbody> -</table> - -<p> </p> |