RTCPeerConnectionIceEvent.candidate
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.`,
);
};
仕様書
Specification |
---|
WebRTC: Real-Time Communication in Browsers # dom-rtcpeerconnectioniceevent-candidate |
ブラウザーの互換性
BCD tables only load in the browser