RTCPeerConnectionIceEvent.candidate
Baseline
広く利用可能
この機能は広く実装されており、多くのバージョンの端末やブラウザーで動作します。2018年9月以降、すべてのブラウザーで利用可能です。
candidate は RTCPeerConnectionIceEvent インターフェイスの読み取り専用のプロパティで、そのイベントに関連付けられた RTCIceCandidate を返します。
値
受信した ICE の候補を表す RTCIceCandidate オブジェクト、 またはこのネゴシエーションセッションの候補がないことを表す null です。
例
js
pc.onicecandidate = (ev) => {
alert(
`The ICE candidate (transport address: '${ev.candidate.candidate}') has been added to this connection.`,
);
};
仕様書
| 仕様書 |
|---|
| WebRTC: Real-Time Communication in Browsers> # dom-rtcpeerconnectioniceevent-candidate> |