--- title: RTCDataChannelEvent.channel slug: Web/API/RTCDataChannelEvent/channel translation_of: Web/API/RTCDataChannelEvent/channel ---
{{APIRef("WebRTC")}}{{SeeCompatTable}}
읽기 속성인 RTCDataChannelEvent
.channel
는 {{domxref("RTCDataChannel")}}와 관련이 있는 이벤트를 반환합니다.
var channel = RTCDataChannelEvent.channel;
{{domxref("RTCDataChannel")}} 객체는 {{domxref("RTCPeerConnection")}}을 원격 피어와 연결해주는 데이터 채널을 알려줍니다.
{{event("datachannel")}} 이벤트 핸들러 안 코드의 첫 줄에서 이벤트 객체의 채널을 가져오고, 이를 데이터 트래픽을 관리하는 코드에 사용 될 수 있도록 지역 변수로 저장합니다.
pc.ondatachannel = function(event) { inboundDataChannel = event.channel; inboundDataChannel.onmessage = handleIncomingMessage; inboundDataChannel.onopen = handleChannelOpen; inboundDataChannel.onclose = handleChannelClose; }
명세 | 상태 | 코멘트 |
---|---|---|
{{ SpecName('WebRTC 1.0', '#dom-RTCDataChannelEvent-channel', 'RTCDataChannelEvent.channel') }} | {{ Spec2('WebRTC 1.0') }} | Initial specification. |
{{Compat("api.RTCDataChannelEvent.channel")}}