Back to Content

RTCIceCandidatePair

files/en-us/web/api/rtcicecandidatepair/index.md

latest938 B
Original Source

{{APIRef("WebRTC")}}

The RTCIceCandidatePair dictionary describes a pair of ICE candidates which together comprise a description of a viable connection between two WebRTC endpoints. It is used as the return value from {{domxref("RTCIceTransport.getSelectedCandidatePair()")}} to identify the currently-selected candidate pair identified by the ICE agent.

Instance properties

  • {{domxref("RTCIceCandidatePair.local", "local")}}
    • : An {{domxref("RTCIceCandidate")}} describing the configuration of the local end of the connection.
  • {{domxref("RTCIceCandidatePair.remote", "remote")}}
    • : The RTCIceCandidate describing the configuration of the remote end of the connection.

Examples

See RTCIceTransport.onselectedcandidatepairchange for example code.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}