Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
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 RTCIceTransport.getSelectedCandidatePair() to identify the currently-selected candidate pair identified by the ICE agent.
local An RTCIceCandidate describing the configuration of the local end of the connection.
remote The RTCIceCandidate describing the configuration of the remote end of the connection.
See RTCIceTransport.onselectedcandidatepairchange for example code.