The RTCIceCandidate interface—part of the WebRTC API—represents
candidate Internet Connectivity Establishment (ICE) configuration
may be used to establish an rtc.RTCPeerConnection.
The RTCIceCandidate interface—part of the WebRTC API—represents candidate Internet Connectivity Establishment (ICE) configuration may be used to establish an `rtc.RTCPeerConnection`.
(candidate this)Property.
The read-only property candidate on the rtc.RTCIceCandidate
returns a dom.DOMString describing the candidate in detail.
var candidate = RTCIceCandidate.candidate;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/candidate
Property. The read-only property candidate on the `rtc.RTCIceCandidate` returns a `dom.DOMString` describing the candidate in detail. `var candidate = RTCIceCandidate.candidate;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/candidate`
(component this)Property.
The read-only component property on the rtc.RTCIceCandidate
is a string which indicates whether the candidate is an RTP or
RTCP candidate.
var component = RTCIceCandidate.component;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/component
Property. The read-only component property on the `rtc.RTCIceCandidate` is a string which indicates whether the candidate is an RTP or RTCP candidate. `var component = RTCIceCandidate.component;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/component`
Constructor.
The RTCIceCandidate() constructor creates and returns a new rtc.RTCIceCandidate object, which can be configured to represent a single ICE candidate.
candidateInfo Optional
An optional rtc.RTCIceCandidateInit object providing information about the candidate; if this is provided, the candidate is initialized configured to represent the described candidate.
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/RTCIceCandidate
Constructor. The RTCIceCandidate() constructor creates and returns a new `rtc.RTCIceCandidate` object, which can be configured to represent a single ICE candidate. candidateInfo Optional An optional `rtc.RTCIceCandidateInit` object providing information about the candidate; if this is provided, the candidate is initialized configured to represent the described candidate. See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/RTCIceCandidate`
(foundation this)Property.
The rtc.RTCIceCandidate interface's read-only foundation property
a string which uniquely identifies the candidate across multiple
var foundation = RTCIceCandidate.foundation;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/foundation
Property. The `rtc.RTCIceCandidate` interface's read-only foundation property a string which uniquely identifies the candidate across multiple `var foundation = RTCIceCandidate.foundation;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/foundation`
(ip this)Property.
The rtc.RTCIceCandidate interface's read-only ip property is
string providing the address of the device which is the source
the candidate.
var address = RTCIceCandidate.ip;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/ip
Property. The `rtc.RTCIceCandidate` interface's read-only ip property is string providing the address of the device which is the source the candidate. `var address = RTCIceCandidate.ip;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/ip`
(port this)Property.
The rtc.RTCIceCandidate interface's read-only port property
the port number on the device at the address given by web.ip
which the candidate's peer can be reached.
var port = RTCIceCandidate.port;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/port
Property. The `rtc.RTCIceCandidate` interface's read-only port property the port number on the device at the address given by `web.ip` which the candidate's peer can be reached. `var port = RTCIceCandidate.port;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/port`
(priority this)Property.
The rtc.RTCIceCandidate interface's read-only priority property
the candidate's priority according to the remote peer; the higher
value is, the better the remote peer considers the candidate
be.
var priority = RTCIceCandidate.priority;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/priority
Property. The `rtc.RTCIceCandidate` interface's read-only priority property the candidate's priority according to the remote peer; the higher value is, the better the remote peer considers the candidate be. `var priority = RTCIceCandidate.priority;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/priority`
(protocol this)Property.
The rtc.RTCIceCandidate interface's read-only protocol property
a string which indicates whether the candidate uses UDP or TCP
its transport protocol.
var protocol = RTCIceCandidate.protocol;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/protocol
Property. The `rtc.RTCIceCandidate` interface's read-only protocol property a string which indicates whether the candidate uses UDP or TCP its transport protocol. `var protocol = RTCIceCandidate.protocol;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/protocol`
(related-address this)Property.
The rtc.RTCIceCandidate interface's read-only relatedAddress
is a string indicating the related address of a relay or reflexive
var relAddress = RTCIceCandidate.relatedAddress;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedAddress
Property. The `rtc.RTCIceCandidate` interface's read-only relatedAddress is a string indicating the related address of a relay or reflexive `var relAddress = RTCIceCandidate.relatedAddress;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedAddress`
(related-port this)Property.
The rtc.RTCIceCandidate interface's read-only relatedPort property
the port number of reflexive or relay candidates.
var relPort = RTCIceCandidate.relatedPort;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedPort
Property. The `rtc.RTCIceCandidate` interface's read-only relatedPort property the port number of reflexive or relay candidates. `var relPort = RTCIceCandidate.relatedPort;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedPort`
(rtc-ice-candidate this)Method.
The rtc.RTCIceCandidate method toJSON() converts the RTCIceCandidate
which it's called into JSON in the form of an rtc.RTCIceCandidateInit
json = rtcIceCandidate.toJSON();
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/toJSON
Method. The `rtc.RTCIceCandidate` method toJSON() converts the RTCIceCandidate which it's called into JSON in the form of an `rtc.RTCIceCandidateInit` `json = rtcIceCandidate.toJSON();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/toJSON`
(sdp-m-line-index this)Property.
The read-only sdpMLineIndex property on the rtc.RTCIceCandidate
is a zero-based index of the m-line describing the media associated
the candidate.
var sdpMLineIndex = RTCIceCandidate.sdpMLineIndex;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/sdpMLineIndex
Property. The read-only sdpMLineIndex property on the `rtc.RTCIceCandidate` is a zero-based index of the m-line describing the media associated the candidate. `var sdpMLineIndex = RTCIceCandidate.sdpMLineIndex;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/sdpMLineIndex`
(sdp-mid this)Property.
The read-only property sdpMid on the rtc.RTCIceCandidate interface
a dom.DOMString specifying the media stream identification
of the media component with which the candidate is associated.
var sdpMid = RTCIceCandidate.sdpMid;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/sdpMid
Property. The read-only property sdpMid on the `rtc.RTCIceCandidate` interface a `dom.DOMString` specifying the media stream identification of the media component with which the candidate is associated. `var sdpMid = RTCIceCandidate.sdpMid;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/sdpMid`
(set-related-port! this val)Property.
The rtc.RTCIceCandidate interface's read-only relatedPort property
the port number of reflexive or relay candidates.
var relPort = RTCIceCandidate.relatedPort;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedPort
Property. The `rtc.RTCIceCandidate` interface's read-only relatedPort property the port number of reflexive or relay candidates. `var relPort = RTCIceCandidate.relatedPort;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedPort`
(tcp-type this)Property.
The rtc.RTCIceCandidate interface's read-only tcpType property
included on TCP candidates to provide additional details about
candidate type.
var tcpType = RTCIceCandidate.tcpType;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/tcpType
Property. The `rtc.RTCIceCandidate` interface's read-only tcpType property included on TCP candidates to provide additional details about candidate type. `var tcpType = RTCIceCandidate.tcpType;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/tcpType`
(type this)Property.
The rtc.RTCIceCandidate interface's read-only type specifies
type of candidate the object represents.
var type = RTCIceCandidate.type;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/type
Property. The `rtc.RTCIceCandidate` interface's read-only type specifies type of candidate the object represents. `var type = RTCIceCandidate.type;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/type`
(username-fragment this)Property.
The read-only usernameFragment property on the rtc.RTCIceCandidate
is a string indicating the username fragment ("ufrag") that
identifies a single ICE interaction session.
var ufrag = RTCIceCandidate.usernameFragment;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/usernameFragment
Property. The read-only usernameFragment property on the `rtc.RTCIceCandidate` is a string indicating the username fragment (\"ufrag\") that identifies a single ICE interaction session. `var ufrag = RTCIceCandidate.usernameFragment;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/usernameFragment`
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |