RTCPeerConnection.canTrickleIceCandidates

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.

The read-only property RTCPeerConnection.canTrickleIceCandidates returns a Boolean which indicates whether or not the remote peer can accept trickled ICE candidates.

SyntaxEdit

 var canTrickle = peerConnection.canTrickleIceCandidates;

Value

A Boolean that is true if the remote peer can accept trickled ICE candidates and false if it cannot.

This property's value is determined once the local peer has called RTCPeerConnection.setRemoteDescription(); the description is used to make the determination as to whether or not the remote peer supports trickled ICE candidates.

ExampleEdit

var pc = new RTCPeerConnection();
var canTrickle = pc.canTrickleIceCandidates;

SpecificationsEdit

Specification Status Comment
WebRTC 1.0: Real-time Communication Between Browser
The definition of 'RTCPeerConnection.canTrickleIceCandidates' in that specification.
Working Draft Initial specification.

Browser compatibilityEdit

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) [1] 44 (44) No support (Yes) ?

[1] Though this property is not prefixed, the interface it belongs to is.

See alsoEdit

Document Tags and Contributors

 Contributors to this page: teoli, Sheppy
 Last updated by: teoli,