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.
Syntax
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.
Example
var pc = new RTCPeerConnection(); var canTrickle = pc.canTrickleIceCandidates;
Specifications
| Specification | Status | Comment |
|---|---|---|
| WebRTC 1.0: Real-time Communication Between Browser The definition of 'RTCPeerConnection.canTrickleIceCandidates' in that specification. |
Working Draft | Initial specification. |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | (Yes) [1] | 44 (44) | No support | (Yes) | ? |
| Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | ? | ? | 44 (44) | No support | ? | ? |
[1] Though this property is not prefixed, the interface it belongs to is.