interface dom.RTCIceTransport
implements EventTarget
import { type dom } from "https://deno.land/x/evt@v2.4.10/lib/types/index.ts";
const { RTCIceTransport } = dom;
Provides access to information about the ICE transport layer over which the data is being sent and received.
Properties
readonly
component: RTCIceComponentreadonly
gatheringState: RTCIceGathererStateongatheringstatechange: ((this: RTCIceTransport, ev: Event) => any) | null
onselectedcandidatepairchange: ((this: RTCIceTransport, ev: Event) => any) | null
onstatechange: ((this: RTCIceTransport, ev: Event) => any) | null
readonly
role: RTCIceRolereadonly
state: RTCIceTransportStateMethods
getLocalCandidates(): RTCIceCandidate[]
getLocalParameters(): RTCIceParameters | null
getRemoteCandidates(): RTCIceCandidate[]
getRemoteParameters(): RTCIceParameters | null
getSelectedCandidatePair(): RTCIceCandidatePair | null
addEventListener<K extends keyof RTCIceTransportEventMap>(): void
type: K,
listener: (this: RTCIceTransport, ev: RTCIceTransportEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof RTCIceTransportEventMap>(): void
type: K,
listener: (this: RTCIceTransport, ev: RTCIceTransportEventMap[K]) => any,
options?: boolean | EventListenerOptions,