Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RTCIceCandidate

The RTCIceCandidate interface—part of the WebRTC API—represents a candidate Internet Connectivity Establishment (ICE) configuration which may be used to establish an RTCPeerConnection.

interface RTCIceCandidate {
readonly address: string | null;
readonly candidate: string;
readonly component: RTCIceComponent | null;
readonly foundation: string | null;
readonly port: number | null;
readonly priority: number | null;
readonly protocol: RTCIceProtocol | null;
readonly relatedAddress: string | null;
readonly relatedPort: number | null;
readonly sdpMid: string | null;
readonly sdpMLineIndex: number | null;
readonly tcpType: RTCIceTcpCandidateType | null;
readonly type: RTCIceCandidateType | null;
readonly usernameFragment: string | null;
}
var RTCIceCandidate: {
prototype: RTCIceCandidate;
new (candidateInitDict?: RTCIceCandidateInit): RTCIceCandidate;
}
;

§Properties

§
readonly address: string | null
[src]
§
readonly candidate: string
[src]
§
readonly component: RTCIceComponent | null
[src]
§
readonly foundation: string | null
[src]
§
readonly port: number | null
[src]
§
readonly priority: number | null
[src]
§
readonly protocol: RTCIceProtocol | null
[src]
§
readonly relatedAddress: string | null
[src]
§
readonly relatedPort: number | null
[src]
§
readonly sdpMid: string | null
[src]
§
readonly sdpMLineIndex: number | null
[src]
§
readonly tcpType: RTCIceTcpCandidateType | null
[src]
§
readonly type: RTCIceCandidateType | null
[src]
§
readonly usernameFragment: string | null
[src]

§Methods