このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docs コミュニティーについてもっと知り、仲間になるにはこちらから。

View in English Always switch to English

RTCPeerConnectionIceEvent.candidate

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2018年9月⁩.

candidateRTCPeerConnectionIceEvent インターフェイスの読み取り専用のプロパティで、そのイベントに関連付けられた RTCIceCandidate を返します。

受信した ICE の候補を表す RTCIceCandidate オブジェクト、 またはこのネゴシエーションセッションの候補がないことを表す null です。

js
pc.onicecandidate = (ev) => {
  alert(
    `The ICE candidate (transport address: '${ev.candidate.candidate}') has been added to this connection.`,
  );
};

仕様書

Specification
WebRTC: Real-Time Communication in Browsers
# dom-rtcpeerconnectioniceevent-candidate

ブラウザーの互換性

関連情報