This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The read-only RTCDataChannel
property negotiated
indicates whether the RTCDataChannel
's connection was negotiated by the Web app (true
) or by the WebRTC layer (false
). The default is false
.
See Creating a data channel in Using WebRTC data channels for further information about this property.
Syntax
var negotiated = aDataChannel.negotiated;
Value
true
if the RTCDataChannel
's connection was negotiated by the Web app itself; false
if the negotiation was handled by the WebRTC layer. The default is false
.
Example
// TBD
Specifications
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'RTCDataChannel.negotiated' in that specification. |
Working Draft | Initial specification. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 45 | No support | No support | No support | No support |
Feature | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 45 | 45 | No support | No support | No support | No support |